From a3136ebb132943ffb2f9dc10f9b9e817fecdfe43 Mon Sep 17 00:00:00 2001 From: daief <1437931235@qq.com> Date: Fri, 20 May 2022 12:01:34 +0800 Subject: [PATCH] chore: fix upload relese --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b73e788..beb69a7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,12 +42,12 @@ jobs: if: runner.os == 'Windows' run: | cp .\config.default.yml .\config.yml - Compress-Archive -Path .\wakapi.exe, .\config.yml -DestinationPath release.zip + Compress-Archive -Path .\wakapi.exe, .\config.yml -DestinationPath wakapi_${{ matrix.alias }}_amd64.zip - name: Compress working folder on Unix if: runner.os != 'Windows' run: | cp config.default.yml config.yml - zip -9 release.zip wakapi config.yml + zip -9 wakapi_${{ matrix.alias }}_amd64.zip wakapi config.yml - name: Upload built executable to Release uses: softprops/action-gh-release@v1