Title bar background color and text color follow windows settings whe… #3996
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: CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: Build/WinMergeDownloadDeps | |
key: WinMergeDownloadDeps | |
- name: Build | |
run: | | |
.\DownloadDeps.cmd | |
.\BuildAll.vs2022.cmd x64 -ci | |
- name: Upload zip | |
uses: actions/upload-artifact@v4 | |
with: | |
name: WinMerge-x64.zip | |
path: Build/Releases/*.zip | |
- name: Upload installer | |
uses: actions/upload-artifact@v4 | |
with: | |
name: WinMerge-x64-Setup-x64.exe | |
path: Build/Releases/*.exe |