mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
fix/ci: don't reference a non-existent env var (#1975)
This commit is contained in:
parent
bd170ee74a
commit
32607ed6ba
1 changed files with 1 additions and 1 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -92,7 +92,7 @@ jobs:
|
|||
foreach ($file in $FILES_TO_VALIDATE) {
|
||||
$testout = ""
|
||||
Write-Output "::group::=== API COMPATIBILITY CHECK: ${file} ==="
|
||||
apicompat -l "left\${file}" -r "right\${file}" --noWarn "$(NoWarn);CP0006" | Tee-Object -Variable testout
|
||||
apicompat -l "left\${file}" -r "right\${file}" --noWarn "CP0006" | Tee-Object -Variable testout
|
||||
Write-Output "::endgroup::"
|
||||
if ($testout -ne "APICompat ran successfully without finding any breaking changes.") {
|
||||
Write-Output "::error::${file} did not pass. Please review it for problems."
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue