一定程度上避免上下课通知未响应 #30 (需要等我到教室里测试,在我电脑上没出现过未响应),优化颜色选择面板动画 #182
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: .NET Build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
# 安装 NuGet | |
- name: Setup NuGet | |
uses: nuget/setup-nuget@v1 | |
with: | |
nuget-version: '5.x' | |
# 还原 NuGet 包 | |
- name: NuGet restore | |
run: nuget restore | |
# 添加 MSBuild.exe 到环境变量: https://github.com/microsoft/setup-msbuild | |
- name: Add msbuild to PATH | |
uses: microsoft/[email protected] | |
# 编译整个项目 | |
- name: Build the solution | |
run: | | |
msbuild -t:restore | |
msbuild /p:Configuration=Release /p:Platform="Any CPU" | |
env: | |
Configuration: ${{ matrix.configuration }} | |
# 上传编译成品 | |
- name: Upload to artifact | |
uses: actions/upload-artifact@main | |
with: | |
name: ZongziTEK_Blackboard_Sticker | |
path: ZongziTEK_Blackboard_Sticker/bin/Release |