Skip to content

Commit

Permalink
Don't run e2e tests when workflow is triggered by push of tag
Browse files Browse the repository at this point in the history
In commit 780d6d4 we've turned off uploading of
build artifact to workflow details in case when the workflow is triggered by a
push of tag. Later in we've decided to change conditions of e2e tests execution
to run the tests more frequently. But we've forgotten that we can't run the
tests when workflow is triggered by a tag push, as there is no build artifact
available. Now we're updating the triggers of e2e tests to take that under
consideration.
  • Loading branch information
michalinacienciala committed Jul 3, 2023
1 parent 4ba4c40 commit 7a5fe11
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ jobs:
- '.env.defaults'
e2e-tests:
needs: [build, detect-if-flag-changed]
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 7a5fe11

Please sign in to comment.