Feature/systemd query events #3
Workflow file for this run
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: Windows Portmaster Core DLL | |
on: | |
push: | |
paths: | |
- 'windows_core_dll/**' | |
branches: | |
- master | |
- develop | |
pull_request: | |
paths: | |
- 'windows_core_dll/**' | |
branches: | |
- master | |
- develop | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: windows-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build DLL | |
run: msbuild windows_core_dll\windows_core_dll.sln -t:rebuild -verbosity:diag -property:Configuration=Release |