From ce61901d631816153941057791d4bcd7ba14319e Mon Sep 17 00:00:00 2001 From: Andrei Dreyer Date: Tue, 23 Apr 2024 12:09:21 +0200 Subject: [PATCH] [workflows] add release step to workflow --- .github/workflows/release.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4be1d89..c391723 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -43,13 +43,13 @@ jobs: run: sha512sum src/main/resources/ruby/builtin_types.zip > src/main/resources/ruby/builtin_types.zip.sha512 - name: Show SHA512 run: cat src/main/resources/ruby/builtin_types.zip.sha512 - # - name: Set next release version - # id: taggerFinal - # uses: anothrNick/github-tag-action@1.61.0 - # env: - # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - # WITH_V: true - # - name: Release - # uses: softprops/action-gh-release@v1 - # with: - # tag_name: ${{ steps.taggerDryRun.outputs.new_tag }} \ No newline at end of file + - name: Set next release version + id: taggerFinal + uses: anothrNick/github-tag-action@1.61.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + WITH_V: true + - name: Release + uses: softprops/action-gh-release@v1 + with: + tag_name: ${{ steps.taggerDryRun.outputs.new_tag }} \ No newline at end of file