Suspend when no active EXTERNAL displays #4
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: Build and Package ClamshellMode | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout source code | |
uses: actions/checkout@v4 | |
- name: Add msbuild to PATH | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build ClamshellMode | |
run: msbuild ClamshellMode.sln /p:Configuration=Release /p:Platform=x64 | |
timeout-minutes: 30 | |
- name: Create GitHub Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: x64/Release/ClamshellMode.exe |