From 097659180b0447bc333746adfd5b2959be4ab70d Mon Sep 17 00:00:00 2001 From: Sergei Kuvakin Date: Mon, 2 Aug 2021 20:27:54 +0300 Subject: [PATCH] feat: binaries come back into release --- .github/workflows/actions.yml | 2 +- run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index f7375ff..8919a2e 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -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 }} diff --git a/run.sh b/run.sh index f355ad9..fa0e6c4 100755 --- a/run.sh +++ b/run.sh @@ -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}