File tree Expand file tree Collapse file tree 3 files changed +10
-2
lines changed
Expand file tree Collapse file tree 3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1717 uses : actions/checkout@v4
1818 with :
1919 fetch-depth : 0
20+ submodules : recursive
21+
22+ - name : Setup Nuget
23+ run : |
24+ dotnet nuget list source
25+ if (-not (dotnet nuget list source | Select-String "nuget.org")) {
26+ dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org
27+ }
2028
2129 - name : Build
2230 shell : powershell
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ Write-Host "Building AquaMai..." -ForegroundColor Cyan
7272Push-Location " $ProjectRoot \AquaMai"
7373try {
7474 Stop-Process - Name " dotnet" - Force - ErrorAction SilentlyContinue
75- dotnet cake
75+ . / build.ps1
7676
7777 $TargetResDir = " $ProjectRoot \MaiChartManager\Resources"
7878 if (-not (Test-Path $TargetResDir )) { New-Item - ItemType Directory - Path $TargetResDir }
You can’t perform that action at this time.
0 commit comments