Upload into the workflow instead of creating a release #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build pre-release | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout vatcansitu | |
uses: actions/checkout@v3 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build artifact from source | |
run: msbuild "${env:GITHUB_WORKSPACE}\VATCANSitu.vcxproj" | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Plugin DLL | |
path: Debug\VATCANSitu.dll |