Skip to content

Commit

Permalink
Update msbuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Viceroyy committed Jun 26, 2024
1 parent 2863876 commit 64b06db
Showing 1 changed file with 24 additions and 2 deletions.
26 changes: 24 additions & 2 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,29 @@ jobs:
name: Arsenal-${{ env.BUILD_CONFIGURATION }}
path: output/${{ env.BUILD_CONFIGURATION }}/*.dll

- uses: dev-drprasad/[email protected]
with:
keep_latest: 0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Create release
uses: softprops/[email protected]
uses: actions/[email protected]
id: create_release
with:
draft: false
prerelease: false
release_name: Arsenal
tag_name: v1.0.0
env:
GITHUB_TOKEN: ${{ github.token }}

- name: Upload release
uses: actions/[email protected]
env:
GITHUB_TOKEN: ${{ github.token }}
with:
files: output/${{ env.BUILD_CONFIGURATION }}/*.dll
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: output/${{ env.BUILD_CONFIGURATION }}/*.dll
asset_name: Arsenal-${{ env.BUILD_CONFIGURATION }}.dll
asset_content_type: application/dll

0 comments on commit 64b06db

Please sign in to comment.