Skip to content

Commit

Permalink
Update dotnet-desktop.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
raczeja authored Nov 25, 2024
1 parent 341227f commit 7fa89ac
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,23 @@ jobs:
with:
path: ./Ocaramba.Templates.VSIX/bin/Release/Ocaramba.Templates.vsix
name: Template
- name: Create GitHub Release
id: create_release
uses: actions/create-release@v1
with:
tag_name: ${{ env.templateVersion}}
release_name: Version ${{ env.templateVersion }}
body: |
Changes in this release:
- List your changes here
draft: false
prerelease: false
if: startsWith(github.ref, 'refs/tags/')
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./Ocaramba.Templates.VSIX/bin/Release/Ocaramba.Templates.vsix
asset_name: Ocaramba.Templates.vsix
asset_content_type: application/octet-stream
if: startsWith(github.ref, 'refs/tags/')

0 comments on commit 7fa89ac

Please sign in to comment.