Skip to content

Commit

Permalink
Update release.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
bitfaster committed Jul 9, 2020
1 parent 4234cbc commit ef52d39
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ef52d39

Please sign in to comment.