We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4263b75 + 9fe8592 commit a6e132aCopy full SHA for a6e132a
1 file changed
.github/workflows/e2e.yml
@@ -15,6 +15,7 @@
15
name: Build e2e tests
16
17
on:
18
+ workflow_dispatch:
19
push:
20
branches: [ develop, release/** ]
21
pull_request:
@@ -61,7 +62,7 @@ jobs:
61
62
run: echo "https://storage.googleapis.com/e2e-tests-cucumber-reports/${{ github.event.repository.name }}/${{ github.ref }}/cucumber-reports/advanced-reports/cucumber-html-reports/overview-features.html"
63
64
maven-deploy:
- if: ${{ github.event_name == 'push' }}
65
+ if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
66
# needs: build TODO: once build is fixed
67
uses: ./.github/workflows/deploy.yml
68
with:
0 commit comments