mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2025-10-14 05:39:05 +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
|
||||
- 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:
|
||||
build:
|
||||
name: ${{matrix.BUILD_CONFIGURATION}}
|
||||
runs-on: windows-lastest
|
||||
name: Build (${{ matrix.BUILD_CONFIGURATION }})
|
||||
runs-on: windows-latest
|
||||
strategy:
|
||||
matrix:
|
||||
BUILD_CONFIGURATION: ['Debug', 'Release']
|
||||
BUILD_CONFIGURATION: [Debug, Release]
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Add MSBuild to PATH
|
||||
uses: microsoft/setup-msbuild@v1.0.2
|
||||
- name: Setup MSBuild
|
||||
uses: microsoft/setup-msbuild@v2
|
||||
|
||||
- name: Restore NuGet packages
|
||||
working-directory: ${{env.GITHUB_WORKSPACE}}
|
||||
run: nuget restore ${{env.SOLUTION_FILE_PATH}}
|
||||
run: nuget restore
|
||||
|
||||
- name: Build ${{matrix.BUILD_CONFIGURATION}}
|
||||
working-directory: ${{env.GITHUB_WORKSPACE}}
|
||||
# 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: Build Solution
|
||||
run: msbuild /m /p:Configuration=${{ matrix.BUILD_CONFIGURATION }}
|
||||
|
||||
- name: Upload Artifact
|
||||
uses: actions/upload-artifact@v4
|
||||
|
|
Loading…
Reference in New Issue
Block a user