This repository was archived by the owner on Aug 12, 2025. It is now read-only.
Update README.md #32
This file contains hidden or 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: 最新构建 | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| name: 二进制构建 | |
| steps: | |
| - name: 初始化 | |
| uses: actions/checkout@v4 | |
| - name: 安装 .NET SDK | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: 10.0.x | |
| - name: 生成二进制文件 | |
| run: dotnet publish -c Release -f net10.0-windows10.0.19041.0 -r win-x64 --self-contained true -o ICC-DN10 | |
| - name: 生成二进制文件(发行版) | |
| run: dotnet publish -c Release -f net10.0-windows10.0.19041.0 -r win-x64 --self-contained false -o Release | |
| - name: 生成二进制文件(调试版本) | |
| run: dotnet publish -c Debug -f net10.0-windows10.0.19041.0 -r win-x64 --self-contained false -o Debug | |
| - name: 上传二进制文件 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: ICC-DN10 | |
| path: ICC-DN10 | |
| - name: 上传二进制文件(发行版) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Release | |
| path: Release | |
| - name: 上传二进制文件(调试版本) | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Debug | |
| path: Debug |