Skip to content

Commit

Permalink
ci: correctly check aio job results (angular#51464)
Browse files Browse the repository at this point in the history
Correctly check the aio job result to determine if we should deploy.

PR Close angular#51464
  • Loading branch information
josephperrott authored and AndrewKushnir committed Aug 22, 2023
1 parent fb296e4 commit 76860b5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:

aio-deploy:
needs: [aio]
if: needs.aio.result == success() && github.event_name == 'push'
if: needs.aio.result == 'success' && github.event_name == 'push'
runs-on:
labels: ubuntu-latest
steps:
Expand Down

0 comments on commit 76860b5

Please sign in to comment.