Skip to content

♻️ 重构代码 🎨 ✨ 🔥 #1

♻️ 重构代码 🎨 ✨ 🔥

♻️ 重构代码 🎨 ✨ 🔥 #1

Workflow file for this run

name: Document Build
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
build:
strategy:
matrix:
configuration: ["Release"]
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install .NET
uses: actions/setup-dotnet@v3
- name: Install SHFB
uses: Bassman2/setup-SHFB@v1
with:
version: 2023.3.4.0
- name: Build Solution
run: dotnet build ./CSharpExtLibHelp/CSharpExtLibHelp.shfbproj --configuration $env:Configuration
env:
Configuration: ${{ matrix.configuration }}
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.configuration }}
path: ./CSharpExtLibHelp/Help/${{ matrix.configuration }}