Skip to content

Commit

Permalink
Rename release banaries names
Browse files Browse the repository at this point in the history
  • Loading branch information
nakabonne committed Mar 28, 2021
1 parent a7fca58 commit 47c196d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
strip target/release/rhack
mkdir -p release
tar -C ./target/release/ -czvf ./release/rhack-mac.tar.gz ./rhack
tar -C ./target/release/ -czvf ./release/rhack_darwin_amd64.tar.gz ./rhack
- name: Build for Linux
if: matrix.os == 'ubuntu-latest'
Expand All @@ -38,13 +38,13 @@ jobs:
strip target/release/rhack
mkdir -p release
mv target/debian/*.deb ./release/rhack-linux.deb
tar -C ./target/release/ -czvf ./release/rhack-linux.tar.gz ./rhack
tar -C ./target/release/ -czvf ./release/rhack_linux_amd64.tar.gz ./rhack
- name: Build for Windows
if: matrix.os == 'windows-latest'
run: |
mkdir -p release
tar -C ./target/release/ -czvf ./release/rhack-win.tar.gz ./rhack.exe
tar -C ./target/release/ -czvf ./release/rhack_win_amd64.tar.gz ./rhack.exe
- name: Release
uses: softprops/action-gh-release@v1
Expand Down

0 comments on commit 47c196d

Please # to comment.