Skip to content

Commit ef52d39

Browse files
authored
Update release.yml
1 parent 4234cbc commit ef52d39

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,11 @@ jobs:
2727
run: dotnet restore
2828
- name: Build
2929
run: dotnet build --configuration Release --no-restore
30-
- name: Zip the Build
30+
- name: Zip
3131
shell: pwsh
32-
run: Compress-Archive -Path JitExplorer\bin\Release\netcoreapp3.1\* -DestinationPath C:\builtfiles\JitExplorer-win64.zip
32+
run: |
33+
New-Item -ItemType Directory -Path C:\builtfiles -Force > $null
34+
Compress-Archive -Path JitExplorer\bin\Release\netcoreapp3.1\* -DestinationPath C:\builtfiles\JitExplorer-win64.zip
3335
- name: Release
3436
uses: softprops/action-gh-release@v1
3537
with:

0 commit comments

Comments
 (0)