From f8652ea92996f2da1bc31391d95428dd97c86d6f Mon Sep 17 00:00:00 2001 From: Klaus Betz <78362353+klausbetz@users.noreply.github.com> Date: Mon, 10 Jun 2024 15:40:41 +0200 Subject: [PATCH] ci: create release workflow --- .github/workflows/release.yml | 50 +++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..014c5bd --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,50 @@ +name: Build & release + +on: + push: + tags: + - '**' + +jobs: + create-release: + name: "Build & release" + runs-on: ubuntu-latest + + steps: + - name: "Checkout repository" + uses: actions/checkout@v4 + + - name: "Set up JDK 17" + uses: actions/setup-java@v4 + with: + java-version: '17' + distribution: 'temurin' + cache: gradle + + - name: "Build JAR" + run: sh gradlew jar + + - name: "Copy JAR to tmp-artifacts" + run: | + mkdir tmp-artifacts + cp build/libs/*.jar tmp-artifacts + + - name: "Create hash files" + run: | + cd tmp-artifacts + for jar in *.jar + do + sha512sum $jar | awk '{ print $1 }' > "${jar}.sha512" + done + cd .. + + - name: "Upload artifacts" + uses: actions/upload-artifact@v4 + with: + name: Package + path: tmp-artifacts + + - name: "Create release" + run: gh release create ${GITHUB_REF_NAME} tmp-artifacts/* --generate-notes --verify-tag + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}