删除模组内置依赖安装 配置文件 #639
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: build | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Build | |
run: dotnet build | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: COG Artifact | |
path: COG/bin | |
- name: Upload Objects | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Objects | |
path: COG/obj |