Skip to content

Commit 3679ea8

Browse files
authored
fix: allow manual workflow_dispatch to trigger deployment
2 parents d8436e4 + 3e2dcf1 commit 3679ea8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sp-deployment-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ env:
1616
jobs:
1717
deploy:
1818
runs-on: ubuntu-latest
19-
if: ${{ github.event.workflow_run.conclusion == 'success' }}
19+
if: ${{ github.event_name == 'workflow_dispatch' || github.event.workflow_run.conclusion == 'success' }}
2020
permissions:
2121
id-token: write
2222
contents: read

0 commit comments

Comments
 (0)