Skip to content

Commit

Permalink
[cherry-pick] prevent final result from succeeding if any image build…
Browse files Browse the repository at this point in the history
…s fail (#6517)
  • Loading branch information
nginx-bot authored Sep 26, 2024
1 parent f2c7805 commit ae9069a
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 ae9069a

Please sign in to comment.