fabric-exporter/.github/workflows/gradle.yml

28 lines
581 B
YAML
Raw Normal View History

2021-05-24 19:18:07 +02:00
name: Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
2022-06-30 23:18:04 +02:00
- name: Set up JDK 17
2021-05-24 19:18:07 +02:00
uses: actions/setup-java@v2
with:
2022-06-30 23:18:04 +02:00
java-version: '17'
2021-05-24 19:18:07 +02:00
distribution: 'adopt'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
- name: Upload build artifacts
uses: actions/upload-artifact@v1
with:
name: build-artifacts
path: build/libs