mirror of
https://github.com/huiyadanli/RevokeMsgPatcher.git
synced 2025-08-23 20:16:07 +08:00
56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
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
|