Skip to content

Commit

Permalink
feat: binaries come back into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergei Kuvakin committed Aug 2, 2021
1 parent dfb3e2b commit 0976591
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
tag: "v${{ env.VERSION }}"
body: |
# `qemu-*-static` @ ${{ env.VERSION }}
artifacts: "releases/usr/bin/*.tar.gz"
artifacts: "releases/usr/bin/*.tar.gz,releases/usr/bin/qemu-*-static"
draft: false
prerelease: false
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ releases_dir="releases/usr/bin/"
cd ${releases_dir}
for file in *; do
tar -czf $file.tar.gz $file;
mv $file.tar.gz x86_64_$file.tar.gz
cp $file.tar.gz x86_64_$file.tar.gz
done
cd ${root_dir}

Expand Down

0 comments on commit 0976591

Please sign in to comment.