Skip to content

Commit ae9069a

Browse files
authored
[cherry-pick] prevent final result from succeeding if any image builds fail (#6517)
1 parent f2c7805 commit ae9069a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ jobs:
648648

649649
tag-stable:
650650
name: Tag tested image as stable
651-
needs: [checks, smoke-tests-oss, smoke-tests-plus, smoke-tests-nap]
651+
needs: [checks, build-docker, build-docker-plus, build-docker-nap, smoke-tests-oss, smoke-tests-plus, smoke-tests-nap]
652652
permissions:
653653
contents: read # To checkout repository
654654
id-token: write # To sign into Google Container Registry
@@ -664,7 +664,7 @@ jobs:
664664
if: ${{ !cancelled() }}
665665
runs-on: ubuntu-24.04
666666
name: Final CI Results
667-
needs: [tag-stable, smoke-tests-oss, smoke-tests-plus, smoke-tests-nap]
667+
needs: [tag-stable, build-docker, build-docker-plus, build-docker-nap, smoke-tests-oss, smoke-tests-plus, smoke-tests-nap]
668668
steps:
669669
- run: |
670670
tagResult="${{ needs.tag-stable.result }}"

0 commit comments

Comments
 (0)