Skip to content

Commit

Permalink
Update msbuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
CorentinPtrl authored Dec 13, 2021
1 parent 2cb6457 commit b83cd00
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,23 @@ jobs:
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild SotCoreWrapper/SotCoreWrapper.vcxproj /m /property:Platform=x64
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: commit_${{ github.sha }}
release_name: Commit ${{ github.sha }}
draft: false
prerelease: true
- name: Release Windows Build
id: release-win
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: SotCoreWrapper.dll
asset_name: SotCoreWrapper.dll
asset_content_type: application/octet-stream

0 comments on commit b83cd00

Please sign in to comment.