-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[workflows] add files for release step
- Loading branch information
1 parent
ce61901
commit d80b528
Showing
1 changed file
with
9 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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] | ||
|
@@ -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 |