From eddd85c45b8d4461ba77331bf437e41c6a7844e9 Mon Sep 17 00:00:00 2001 From: falkTX Date: Fri, 2 Dec 2022 19:19:01 +0000 Subject: [PATCH] Remove superfulous zip/exe artifacts on windows builds Signed-off-by: falkTX --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6a735a6..4b68527 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -937,8 +937,8 @@ jobs: with: name: ${{ github.event.repository.name }}-win32-${{ github.event.pull_request.number || env.SHA8 }} path: | - *.exe - *.zip + Cardinal-*.exe + Cardinal-*.zip - uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: @@ -947,8 +947,8 @@ jobs: draft: false prerelease: false files: | - *.exe - *.zip + Cardinal-*.exe + Cardinal-*.zip win64: runs-on: ubuntu-22.04 @@ -1027,8 +1027,8 @@ jobs: with: name: ${{ github.event.repository.name }}-win64-${{ github.event.pull_request.number || env.SHA8 }} path: | - *.exe - *.zip + Cardinal-*.exe + Cardinal-*.zip - uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: @@ -1037,8 +1037,8 @@ jobs: draft: false prerelease: false files: | - *.exe - *.zip + Cardinal-*.exe + Cardinal-*.zip source-tarball: runs-on: ubuntu-20.04