Skip to content

Commit

Permalink
fix: artifact-registry step now depends on build
Browse files Browse the repository at this point in the history
  • Loading branch information
mbruzda-splunk committed Jan 11, 2024
1 parent 7c1357a commit f1b521e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/reusable-build-test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,8 @@ jobs:
runs-on: ubuntu-latest
needs:
- meta
if: ${{ !cancelled() && needs.meta.result == 'success' }}
- build
if: ${{ !cancelled() && needs.build.result == 'success' && needs.meta.result == 'success' }}
outputs:
artifact: ${{ steps.artifactid.outputs.result }}
permissions:
Expand Down

0 comments on commit f1b521e

Please sign in to comment.