Improve build scripts and clean up MSBuild invocation #87
This file contains hidden or 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: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| if: "!contains(github.event.head_commit.message, 'skip ci')" | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: | | |
| .\BuildBin.vs2022.cmd | |
| .\BuildArc.cmd | |
| - name: Upload zip | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: winwebdiff | |
| path: Dist/winwebdiff-*.zip |