Skip to content

Commit

Permalink
AG-1472: ensure e2e tests are run when image has already been built
Browse files Browse the repository at this point in the history
  • Loading branch information
hallieswan committed Jun 13, 2024
1 parent 072d0fc commit 48b4d5a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,9 @@ jobs:
needs:
- check-for-image
- build-image
if: ${{ needs.check-for-image.result == 'success' && (needs.build-image.result == 'success' || needs.build-image.result == 'skipped')}}
# always() prevents skipping this job when build-image was skipped
# see https://github.com/actions/runner/issues/491
if: ${{ always() && needs.check-for-image.result == 'success' && (needs.build-image.result == 'success' || needs.build-image.result == 'skipped')}}
timeout-minutes: 60
runs-on: ubuntu-20.04
permissions:
Expand Down

0 comments on commit 48b4d5a

Please sign in to comment.