mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2025-10-14 13:46:07 +08:00
Update build.yml
This commit is contained in:
parent
1c115654bd
commit
34fec631dc
32
.github/workflows/build.yml
vendored
32
.github/workflows/build.yml
vendored
|
@ -25,37 +25,25 @@ on:
|
||||||
- .editorconfig
|
- .editorconfig
|
||||||
- appveyor.yml
|
- appveyor.yml
|
||||||
|
|
||||||
env:
|
|
||||||
# Path to the solution file relative to the root of the project.
|
|
||||||
SOLUTION_FILE_PATH: .
|
|
||||||
|
|
||||||
# Configuration type to build.
|
|
||||||
# You can convert this to a build matrix if you need coverage of multiple configuration types.
|
|
||||||
# https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix
|
|
||||||
#BUILD_CONFIGURATION: [Debug , Release]
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
name: ${{matrix.BUILD_CONFIGURATION}}
|
name: Build (${{ matrix.BUILD_CONFIGURATION }})
|
||||||
runs-on: windows-lastest
|
runs-on: windows-latest
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
BUILD_CONFIGURATION: ['Debug', 'Release']
|
BUILD_CONFIGURATION: [Debug, Release]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Add MSBuild to PATH
|
- name: Setup MSBuild
|
||||||
uses: microsoft/setup-msbuild@v1.0.2
|
uses: microsoft/setup-msbuild@v2
|
||||||
|
|
||||||
- name: Restore NuGet packages
|
- name: Restore NuGet packages
|
||||||
working-directory: ${{env.GITHUB_WORKSPACE}}
|
run: nuget restore
|
||||||
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
|
|
||||||
|
|
||||||
- name: Build ${{matrix.BUILD_CONFIGURATION}}
|
- name: Build Solution
|
||||||
working-directory: ${{env.GITHUB_WORKSPACE}}
|
run: msbuild /m /p:Configuration=${{ matrix.BUILD_CONFIGURATION }}
|
||||||
# Add additional options to the MSBuild command line here (like platform or verbosity level).
|
|
||||||
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
|
|
||||||
run: msbuild /m /p:Configuration=${{matrix.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
|
|
||||||
|
|
||||||
- name: Upload Artifact
|
- name: Upload Artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
|
|
Loading…
Reference in New Issue
Block a user