Skip to content

Commit 0976591

Browse files
author
Sergei Kuvakin
committed
feat: binaries come back into release
1 parent dfb3e2b commit 0976591

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/actions.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
tag: "v${{ env.VERSION }}"
4646
body: |
4747
# `qemu-*-static` @ ${{ env.VERSION }}
48-
artifacts: "releases/usr/bin/*.tar.gz"
48+
artifacts: "releases/usr/bin/*.tar.gz,releases/usr/bin/qemu-*-static"
4949
draft: false
5050
prerelease: false
5151
token: ${{ secrets.GITHUB_TOKEN }}

run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ releases_dir="releases/usr/bin/"
3333
cd ${releases_dir}
3434
for file in *; do
3535
tar -czf $file.tar.gz $file;
36-
mv $file.tar.gz x86_64_$file.tar.gz
36+
cp $file.tar.gz x86_64_$file.tar.gz
3737
done
3838
cd ${root_dir}
3939

0 commit comments

Comments
 (0)