Skip to content

Commit

Permalink
fix: release on homebrew
Browse files Browse the repository at this point in the history
  • Loading branch information
benny-n committed Apr 26, 2022
1 parent 470623b commit 113c2e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
FILE=replibyte_${RELEASE_NAME}_x86_64-unknown-linux-musl
sudo mv replibyte $FILE
sudo tar -czvf ${FILE}.tar.gz $FILE && sudo rm $FILE
sudo touch ${FILE}.sha256sum && sudo chmod 777 ${FILE}.sha256sum
sudo touch ${FILE}.tar.gz.sha256sum && sudo chmod 777 ${FILE}.tar.gz.sha256sum
sudo sha256sum "${FILE}.tar.gz" | cut -d ' ' -f 1 > ${FILE}.tar.gz.sha256sum
- name: Release
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
FILE=replibyte_${RELEASE_NAME}_x86_64-pc-windows-gnu.exe
sudo mv replibyte.exe $FILE
sudo zip -9r ${FILE}.zip $FILE && sudo rm $FILE
sudo touch ${FILE}.sha256sum && sudo chmod 777 ${FILE}.sha256sum
sudo touch ${FILE}.zip.sha256sum && sudo chmod 777 ${FILE}.zip.sha256sum
sudo sha256sum "${FILE}.zip" | cut -d ' ' -f 1 > ${FILE}.zip.sha256sum
- name: Release
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
FILE=replibyte_${RELEASE_NAME}_x86_64-apple-darwin
sudo mv replibyte $FILE
sudo zip -9r ${FILE}.zip $FILE && sudo rm $FILE
sudo touch ${FILE}.sha256sum && sudo chmod 777 ${FILE}.sha256sum
sudo touch ${FILE}.zip.sha256sum && sudo chmod 777 ${FILE}.zip.sha256sum
sudo sha256sum "${FILE}.zip" | cut -d ' ' -f 1 > ${FILE}.zip.sha256sum
- name: Release
Expand Down

0 comments on commit 113c2e2

Please sign in to comment.