Skip to content

Commit

Permalink
Create github action
Browse files Browse the repository at this point in the history
  • Loading branch information
kolbyd committed Mar 28, 2024
1 parent a566715 commit 1fce058
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-prerelease.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
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" /p:AssemblyName=VATCANSitu-nightly

- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: "VATCANSitu-nightly.dll"
prerelease: true

0 comments on commit 1fce058

Please sign in to comment.