Add HDR copy-desktop-to-clipboard functionality (Ctrl+P) #196
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: Builds | |
on: [push, pull_request] | |
jobs: | |
Build: | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
#matrix: | |
# config: [Release] | |
# platform: [Win32, x64] | |
# Originally the build was then executed with this: | |
# msbuild SKIV.sln -p:Configuration="${{ matrix.config }}" -p:Platform="${{ matrix.platform }}" -m | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: SpecialKO/GA-setup-cpp-n20@master | |
- uses: microsoft/setup-msbuild@v2 | |
with: | |
vs-version: '[17.0,18.0)' | |
- name: Restore the required Nuget packages | |
run: | | |
nuget restore SKIV.sln | |
- name: Build the codebase (64-bit) | |
run: | | |
msbuild SKIV.sln -p:Configuration="Release" -p:Platform="x64" -m | |
- name: Build the codebase (32-bit) | |
run: | | |
msbuild SKIV.sln -p:Configuration="Release" -p:Platform="Win32" -m | |
- name: Prepare environment variables for the artifact name | |
run: | | |
$Version = (Get-Item ".\Builds\SKIV*.exe").VersionInfo.ProductVersion | Select-Object -First 1 | |
If ($null -eq $Version) { $Version = "unknown" } | |
"SKIV_VERSION=$Version" | Out-File -FilePath $env:GITHUB_ENV -Encoding UTF8 -Append | |
"SHORT_SHA=$("${{ github.sha }}".SubString(0, 8))" | Out-File -FilePath $env:GITHUB_ENV -Encoding UTF8 -Append | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: SKIV_${{ env.SKIV_VERSION }}_${{ env.SHORT_SHA }} | |
path: | | |
Builds/SKIV*.exe | |
if-no-files-found: error | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: SKIV_${{ env.SKIV_VERSION }}_${{ env.SHORT_SHA }}_debug_symbols | |
path: | | |
Builds/SKIV*.pdb | |
if-no-files-found: warn |