Fix an issue where the message box "Another application has updated f… #3159
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@v3 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: Build/WinMergeDownloadDeps | |
key: WinMergeDownloadDeps | |
- name: Build | |
run: | | |
.\DownloadDeps.cmd | |
.\BuildAll.vs2022.cmd x64 -ci | |
- name: Upload zip | |
uses: actions/upload-artifact@v3 | |
with: | |
name: WinMerge-x64.zip | |
path: Build/Releases/*.zip | |
- name: Upload installer | |
uses: actions/upload-artifact@v3 | |
with: | |
name: WinMerge-x64-Setup-x64.exe | |
path: Build/Releases/*.exe |