From 499f870679c0bed15ff3c69758cf62c8e82d318b Mon Sep 17 00:00:00 2001 From: Andrey Filipenkov Date: Thu, 16 Feb 2023 15:38:13 +0300 Subject: [PATCH] [CI] save artifact file directly no longer zips whole directory hierarchy out/build/... --- .github/workflows/github.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github.yml b/.github/workflows/github.yml index 7dc53d43b..82fe28607 100644 --- a/.github/workflows/github.yml +++ b/.github/workflows/github.yml @@ -200,7 +200,7 @@ jobs: with: name: ${{ env.VCMI_PACKAGE_FILE_NAME }} - ${{ matrix.platform }} path: | - ${{github.workspace}}/**/${{ env.VCMI_PACKAGE_FILE_NAME }}.${{ matrix.extension }} + ${{github.workspace}}/out/build/${{matrix.preset}}/${{ env.VCMI_PACKAGE_FILE_NAME }}.${{ matrix.extension }} - name: Upload build if: ${{ matrix.pack == 1 && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/features/')) && matrix.platform == 'msvc' }}