Skip to content

Commit 3e98c40

Browse files
committed
Fix cleanup condition to work with boolean types
Signed-off-by: Max Brauer <[email protected]>
1 parent 606f22c commit 3e98c40

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/run-scdf-at.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ jobs:
249249
environment: scdf_at
250250
needs: [ lease_test_env, rabbit, kafka ]
251251
# Always delete the lease. Unless, we want to explicitly keep it after a successful run.
252-
if: ${{ (success() && inputs.delete-lease-after-success == 'true') || failure() }}
252+
if: ${{ (success() && inputs.delete-lease-after-success) || failure() }}
253253
steps:
254254
- uses: actions/checkout@v4
255255
- uses: ./.github/actions/install-shepherd-cli

0 commit comments

Comments
 (0)