We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4234cbc commit ef52d39Copy full SHA for ef52d39
.github/workflows/release.yml
@@ -27,9 +27,11 @@ jobs:
27
run: dotnet restore
28
- name: Build
29
run: dotnet build --configuration Release --no-restore
30
- - name: Zip the Build
+ - name: Zip
31
shell: pwsh
32
- run: Compress-Archive -Path JitExplorer\bin\Release\netcoreapp3.1\* -DestinationPath C:\builtfiles\JitExplorer-win64.zip
+ 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
35
- name: Release
36
uses: softprops/action-gh-release@v1
37
with:
0 commit comments