Skip to content

Commit 7b9ee60

Browse files
committed
add always()
1 parent f18c4e3 commit 7b9ee60

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yaml

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ jobs:
5151
run-docker-build:
5252
needs: check-if-docker-build
5353
if: |
54-
needs.check-if-docker-build.outputs.force-docker-build == 'true' ||
54+
always() &&
55+
(needs.check-if-docker-build.outputs.force-docker-build == 'true' ||
5556
github.event.inputs.rebuild-docker-images == 'true' || github.event.inputs.rebuild-docker-images == true ||
56-
github.event.inputs.rebuild-docker-images-call == 'true' || github.event.inputs.rebuild-docker-images-call == true
57+
github.event.inputs.rebuild-docker-images-call == 'true' || github.event.inputs.rebuild-docker-images-call == true)
5758
uses: ./.github/workflows/docker-build.yml
5859

5960
test-linux:

0 commit comments

Comments
 (0)