From 2cf5440923de868a7485d6f66049d94a605c3ba3 Mon Sep 17 00:00:00 2001 From: William Adam-Grenier Date: Tue, 28 Nov 2023 16:38:41 -0500 Subject: [PATCH] Fix Release Pipeline Windows Windows was missing the dict file --- .github/workflows/Release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 84ae61f..c7d1cef 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -50,6 +50,7 @@ jobs: working-directory: build/Obscura/Release shell: pwsh run: | + Copy-Item "../ZeroFileDictionary.json" Compress-Archive * ../../Obscura_${{ matrix.sys.name }}_v${{ github.event.inputs.version }}.zip - name: Zip OSX App @@ -73,4 +74,4 @@ jobs: replacesArtifacts: false name: "Obscura v${{ github.event.inputs.version }}" tag: "v${{ github.event.inputs.version }}" - artifacts: build/Obscura_${{ matrix.sys.name }}_v${{ github.event.inputs.version }}.zip \ No newline at end of file + artifacts: build/Obscura_${{ matrix.sys.name }}_v${{ github.event.inputs.version }}.zip