Skip to content

Commit

Permalink
[workflows] add files for release step
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiDreyer committed Apr 23, 2024
1 parent ce61901 commit d80b528
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,12 @@ jobs:
run: ./standalone --withLanguageFrontend RUBYSRC
- name: Checksum
run: sha512sum src/main/resources/ruby/builtin_types.zip > src/main/resources/ruby/builtin_types.zip.sha512
- name: Rename
run: |
mv src/main/resources/ruby/builtin_types.zip ruby_builtin_types.zip
mv src/main/resources/ruby/builtin_types.zip.sha512 ruby_builtin_types.zip.sha521
- name: Show SHA512
run: cat src/main/resources/ruby/builtin_types.zip.sha512
run: cat ruby_builtin_types.zip.sha512
- name: Set next release version
id: taggerFinal
uses: anothrNick/[email protected]
Expand All @@ -52,4 +56,7 @@ jobs:
- name: Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.taggerDryRun.outputs.new_tag }}
tag_name: ${{ steps.taggerDryRun.outputs.new_tag }}
files: |
ruby_builtin_types.zip
ruby_builtin_types.zip.sha512

0 comments on commit d80b528

Please sign in to comment.