Skip to content

Commit

Permalink
Add uploading binaries to release
Browse files Browse the repository at this point in the history
  • Loading branch information
jas88 committed Mar 27, 2021
1 parent 4428269 commit 4db0d08
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,15 @@ jobs:
# Remove the pfx
- name: Remove the pfx
run: Remove-Item -path GitHubActionsWorkflow.pfx
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
if: contains(github.ref, 'refs/tags/v')
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: dist/*.zip
tag: ${{ github.ref }}
overwrite: true
file_glob: true

# Upload the MSIX package: https://github.com/marketplace/actions/upload-artifact
#- name: Upload build artifacts
Expand Down

0 comments on commit 4db0d08

Please sign in to comment.