Skip to content

Commit

Permalink
prevent final result from succeeding if any image builds fail (#6509)
Browse files Browse the repository at this point in the history
  • Loading branch information
pdabelf5 authored and web-flow committed Sep 26, 2024
1 parent f2c7805 commit f2ad309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -648,7 +648,7 @@ jobs:

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

0 comments on commit f2ad309

Please sign in to comment.