diff options
Diffstat (limited to 'forgewrapper/.github/workflows/build.yml')
| -rw-r--r-- | forgewrapper/.github/workflows/build.yml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/forgewrapper/.github/workflows/build.yml b/forgewrapper/.github/workflows/build.yml new file mode 100644 index 0000000000..971e891add --- /dev/null +++ b/forgewrapper/.github/workflows/build.yml @@ -0,0 +1,28 @@ +name: Gradle Build + +on: + push: + branches: [master] + pull_request: + branches: [master] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Set up JDK + uses: actions/setup-java@v4 + with: + distribution: "temurin" + java-version: "8.0.312" + architecture: x64 + - name: Build with Gradle + run: | + chmod +x ./gradlew + ./gradlew build -iS + - uses: actions/upload-artifact@v4 + with: + name: Package + path: build/libs |
