Skip to content

Commit a6e132a

Browse files
Merge pull request #294 from cdapio/add-workflow-dispatch
add workflow_dispatch to build pipeline
2 parents 4263b75 + 9fe8592 commit a6e132a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/e2e.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
name: Build e2e tests
1616

1717
on:
18+
workflow_dispatch:
1819
push:
1920
branches: [ develop, release/** ]
2021
pull_request:
@@ -61,7 +62,7 @@ jobs:
6162
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"
6263

6364
maven-deploy:
64-
if: ${{ github.event_name == 'push' }}
65+
if: ${{ github.event_name == 'push' || github.event_name == 'workflow_dispatch' }}
6566
# needs: build TODO: once build is fixed
6667
uses: ./.github/workflows/deploy.yml
6768
with:

0 commit comments

Comments
 (0)