From f11a61b2c11e77dd9a6cb900df82453a52245d0c Mon Sep 17 00:00:00 2001 From: Christian Grasser Date: Wed, 11 Oct 2023 21:05:29 +0200 Subject: [PATCH] avoid dir hierarchy in zip file and add just dll to the root of the zip --- .github/workflows/CI_build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index 0e38a7c..05d8f98 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -27,7 +27,7 @@ jobs: - name: zip artifacts for ${{ matrix.build_platform }} if: matrix.build_configuration == 'Release' - run: 7z a SpeechPlugin_${{ steps.tagName.outputs.tag }}_${{ matrix.build_platform }}.zip ${{ matrix.build_platform }}\${{ matrix.build_configuration }}\SpeechPlugin.dll + run: 7z a SpeechPlugin_${{ steps.tagName.outputs.tag }}_${{ matrix.build_platform }}.zip .\${{ matrix.build_platform }}\${{ matrix.build_configuration }}\SpeechPlugin.dll - name: Archive artifacts for ${{ matrix.build_platform }} if: matrix.build_configuration == 'Release'