From 7661472d5d7b9447237c50e7444cceef6905070e Mon Sep 17 00:00:00 2001 From: gmh <13917777+gmh5225@users.noreply.github.com> Date: Mon, 30 Oct 2023 17:10:02 +0800 Subject: [PATCH] Update build-win64.yml --- .github/workflows/build-win64.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-win64.yml b/.github/workflows/build-win64.yml index c76ba97..d850be5 100644 --- a/.github/workflows/build-win64.yml +++ b/.github/workflows/build-win64.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/upload-artifact@v2 with: - name: ${{ github.event.repository.name }}-${{ github.sha }} + name: ${{ github.event.repository.name }}-x64-${{ github.sha }} path: | build_x64/Release @@ -35,13 +35,13 @@ jobs: with: files: | build_x64/Release/*.* - dest: ${{ github.event.repository.name }}-${{ github.sha }}.zip + dest: ${{ github.event.repository.name }}-x64-${{ github.sha }}.zip - name: Release uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15 if: ${{ startsWith(github.ref, 'refs/tags/') }} with: prerelease: ${{ !startsWith(github.ref, 'refs/tags/v') || contains(github.ref, '-pre') }} - files: ${{ github.event.repository.name }}-${{ github.sha }}.zip + files: ${{ github.event.repository.name }}-x64-${{ github.sha }}.zip env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}