微信 4.1.0.18、微信 4.1.0.21 #107
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: .Net Build | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| Reason: | |
| description: 'Reasons for temporary build' | |
| required: true | |
| default: 'No reason. Just do it.' | |
| push: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - '**/*.md' | |
| - .gitignore | |
| - .editorconfig | |
| - appveyor.yml | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - '**/*.md' | |
| - .gitignore | |
| - .editorconfig | |
| - appveyor.yml | |
| jobs: | |
| build: | |
| name: Build (${{ matrix.BUILD_CONFIGURATION }}) | |
| runs-on: windows-latest | |
| strategy: | |
| matrix: | |
| BUILD_CONFIGURATION: [Debug, Release] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup MSBuild | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Restore NuGet packages | |
| run: nuget restore | |
| - name: Build Solution | |
| run: msbuild /m /p:Configuration=${{ matrix.BUILD_CONFIGURATION }} | |
| - name: Upload Artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: RevokeMsgPatcher-${{ matrix.BUILD_CONFIGURATION }} | |
| path: | | |
| .\RevokeMsgPatcher\bin | |
| !.\RevokeMsgPatcher\bin\**\RevokeMsgPatcher.exe.config | |
| !.\RevokeMsgPatcher\bin\**\RevokeMsgPatcher.pdb |