From e0d4195580f08457ab5a7738b4b044386ff29a10 Mon Sep 17 00:00:00 2001 From: dreamer Date: Fri, 1 Sep 2023 09:05:59 +0200 Subject: [PATCH] update action --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6be97d1..5177ee2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,8 @@ jobs: - name: Pack binaries run: | cd WSTD_EQ - tar -c -h -z -f ${{ github.event.repository.name }}-linux-x86_64-${{ github.event.pull_request.number || env.action_tag }}.tar.gz bin/ + mv bin WSTD_EQ + tar -c -h -z -f ${{ github.event.repository.name }}-linux-x86_64-${{ github.event.pull_request.number || env.action_tag }}.tar.gz WSTD_EQ/ - uses: actions/upload-artifact@v3 with: name: ${{ github.event.repository.name }}-linux-x86_64-${{ github.event.pull_request.number || env.action_tag }} @@ -100,7 +101,8 @@ jobs: - name: Pack binaries run: | cd WSTD_EQ - tar -c -h -z -f ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.action_tag }}.tar.gz bin/ + mv bin WSTD_EQ + tar -c -h -z -f ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.action_tag }}.tar.gz WSTD_EQ/ - uses: actions/upload-artifact@v3 with: name: ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.action_tag }}