We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f891d0 commit 645c277Copy full SHA for 645c277
.github/workflows/build.yml
@@ -17,6 +17,11 @@ jobs:
17
uses: actions/checkout@v4
18
with:
19
fetch-depth: 0
20
+ submodules: recursive
21
+
22
+ - name: Setup Nuget
23
+ run: |
24
+ dotnet nuget add source https://api.nuget.org/v3/index.json -n nuget.org || exit 0
25
26
- name: Build
27
shell: powershell
AquaMai
Packaging/Build.ps1
@@ -72,7 +72,7 @@ Write-Host "Building AquaMai..." -ForegroundColor Cyan
72
Push-Location "$ProjectRoot\AquaMai"
73
try {
74
Stop-Process -Name "dotnet" -Force -ErrorAction SilentlyContinue
75
- dotnet cake
+ ./build.ps1
76
77
$TargetResDir = "$ProjectRoot\MaiChartManager\Resources"
78
if (-not (Test-Path $TargetResDir)) { New-Item -ItemType Directory -Path $TargetResDir }
0 commit comments