Skip to content

Commit 885d1aa

Browse files
ci: fix the usage of unstable container skip (#2001)
Co-authored-by: pyansys-ci-bot <92810346+pyansys-ci-bot@users.noreply.github.com>
1 parent db1753f commit 885d1aa

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/ci_cd.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ jobs:
181181
exit 1
182182
}
183183
184-
$A = $env:SKIP_UNSTABLE_CONTAINERS_TEMPORARILY -eq 1
184+
$A = ${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY }} -eq 1
185185
$B = $ImagesAreEqual -eq 1
186186
187187
# Calculate the logical expression
@@ -386,7 +386,7 @@ jobs:
386386
exit 1
387387
fi
388388
389-
A=$([[ "$SKIP_UNSTABLE_CONTAINERS_TEMPORARILY" == "1" ]] && echo true || echo false)
389+
A=$([[ "${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY }}" == "1" ]] && echo true || echo false)
390390
B=$([[ "$ImagesAreEqual" == "1" ]] && echo true || echo false)
391391
392392
# Calculate the logical expression

doc/changelog.d/2001.maintenance.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
fix the usage of unstable container skip

0 commit comments

Comments
 (0)