Skip to content

Commit

Permalink
feat(ci): create CI workflow msbuild.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxuser authored Aug 19, 2024
1 parent 3aca48f commit 0789be5
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: MSBuild

on:
push:
pull_request:

env:
SOLUTION_FILE_PATH: collat_payload.sln
BUILD_CONFIGURATION: Release

permissions:
contents: read

jobs:
build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- name: Add MSBuild to PATH
uses: microsoft/[email protected]

- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Platform=x64 /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}

0 comments on commit 0789be5

Please sign in to comment.