Skip to content

Commit

Permalink
Fix naming for releases
Browse files Browse the repository at this point in the history
  • Loading branch information
rsdy committed Jul 7, 2023
1 parent 05614ca commit eb9d164
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Upload binaries
uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce
with:
name: 0s-linux-${{ github.event.release.tag_name || github.sha }}-x86_64
name: 0s-${{ github.event.release.tag_name || github.sha }}-x86_64-linux
path: ${{ steps.build.outputs.bin_path }}

release:
Expand All @@ -142,7 +142,7 @@ jobs:
run: |
set -e
cd bin
for dir in 0s-*-linux-* 0s-*-macos-*; do
for dir in 0s-*-linux 0s-*-darwin; do
(cd $dir;
echo $dir
tar czf $dir.tar.gz 0s;
Expand Down

0 comments on commit eb9d164

Please sign in to comment.