Update {{Pp-pc}}, {{Pp-pc1}} protection templates #38
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: awb | |
on: [push, pull_request] | |
jobs: | |
build-windows: | |
name: Windows | |
runs-on: ${{ matrix.windows-version }} | |
strategy: | |
fail-fast: false | |
matrix: | |
windows-version: ['windows-2022'] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Setup NuGet | |
uses: nuget/setup-nuget@v2 | |
- name: Restore NuGet | |
run: nuget restore 'AutoWikiBrowser no plugins.sln' | |
- name: Build | |
run: | | |
MSBuild.exe $Env:GITHUB_WORKSPACE\'AutoWikiBrowser no plugins.sln' /p:Configuration=Release | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: AutoWikiBrowser-${{ github.sha }} | |
path: AWB/bin/Release |