Skip to content

chore: add github actions #4

chore: add github actions

chore: add github actions #4

Workflow file for this run

name: Create release and upload binaries
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]*"
workflow_dispatch:
permissions:
contents: write
jobs:
github_build:
name: Build release binaries
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: adopt
java-version: 11
- name: Build with Gradle
run: |
sh gradlew 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