From ef52d39b334f30bf0534dbd78ff92e1447f6294e Mon Sep 17 00:00:00 2001 From: Alex Peck Date: Wed, 8 Jul 2020 22:11:18 -0700 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b66705..b0c7043 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,9 +27,11 @@ jobs: run: dotnet restore - name: Build run: dotnet build --configuration Release --no-restore - - name: Zip the Build + - name: Zip shell: pwsh - run: Compress-Archive -Path JitExplorer\bin\Release\netcoreapp3.1\* -DestinationPath C:\builtfiles\JitExplorer-win64.zip + run: | + New-Item -ItemType Directory -Path C:\builtfiles -Force > $null + Compress-Archive -Path JitExplorer\bin\Release\netcoreapp3.1\* -DestinationPath C:\builtfiles\JitExplorer-win64.zip - name: Release uses: softprops/action-gh-release@v1 with: