Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ jobs:
exit 1
}

$A = $env:SKIP_UNSTABLE_CONTAINERS_TEMPORARILY -eq 1
$A = ${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY }} -eq 1
$B = $ImagesAreEqual -eq 1

# Calculate the logical expression
Expand Down Expand Up @@ -386,7 +386,7 @@ jobs:
exit 1
fi

A=$([[ "$SKIP_UNSTABLE_CONTAINERS_TEMPORARILY" == "1" ]] && echo true || echo false)
A=$([[ "${{ vars.SKIP_UNSTABLE_CONTAINERS_TEMPORARILY }}" == "1" ]] && echo true || echo false)
B=$([[ "$ImagesAreEqual" == "1" ]] && echo true || echo false)

# Calculate the logical expression
Expand Down
1 change: 1 addition & 0 deletions doc/changelog.d/2001.maintenance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fix the usage of unstable container skip
Loading