Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

修复

修复 #8

Workflow file for this run

# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net
name: .NET
on:
push:
pull_request:
jobs:
build:
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet publish
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
path: src/bin/Release/net8.0/win-x64/publish