Merge pull request 'feat: 透過 nuget.config 檔案判斷要執行的指令' (#2) from develop into master

Reviewed-on: #2
This commit is contained in:
2026-05-06 01:18:59 +00:00
+4
View File
@@ -7,6 +7,10 @@ runs:
- uses: actions/checkout@v6
- uses: https://gitea.jsc.idv.tw/actions/cache-nuget@v0.0.2
- run: dotnet restore
if: ${{ hashFiles('nuget.config') == '' }}
shell: bash
- run: dotnet restore --configfile nuget.config
if: ${{ hashFiles('nuget.config') != '' }}
shell: bash
- run: dotnet build --no-restore
shell: bash