Skip to content

Commit 561037c

Browse files
authored
ci: allow the docs site deploy to be triggered manually (#2177)
Add a workflow_dispatch trigger to the docs deploy workflow so it can be re-run on demand. The workflow previously only ran on push to main, so a dropped push event (as happened with #2171) leaves the change unpublished with no way to re-trigger the deploy.
1 parent d9e189b commit 561037c

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

.github/workflows/docs.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
# under the License.
1717

1818
on:
19+
# Allow the docs site to be rebuilt and republished on demand, e.g. when a
20+
# push-triggered run was dropped and the change never made it to asf-site.
21+
workflow_dispatch:
1922
push:
2023
branches: [ "main" ]
2124
paths:

0 commit comments

Comments
 (0)