diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..728ae19 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,48 @@ +name: Create release and upload binaries + +on: + push: + tags: + - "v[0-9]+.[0-9]+.[0-9]*" + + workflow_dispatch: + +permissions: + contents: write + +jobs: + build: + name: Build release binaries + runs-on: ubuntu-latest + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + submodules: true + + - name: Set up JDK + uses: actions/setup-java@v1 + with: + java-version: 11 + + - name: Setup Gradle + uses: gradle/gradle-build-action@v2 + with: + gradle-version: 7.6 + + - name: Build with Gradle + run: gradle clean pz + + - name: Upload artifacts + uses: actions/upload-artifact@v3 + with: + name: release-artifacts + path: build/distributions + + - name: Add Artifacts to Release + uses: softprops/action-gh-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + files: release-artifacts/*.zip