Skip to content

Commit db9c938

Browse files
committed
Allow manual triggering of deployment
1 parent fa195fc commit db9c938

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ on:
33
push:
44
branches:
55
- main
6+
workflow_dispatch: # Makes it also possible to manually trigger deployment
7+
68
jobs:
79
build-and-deploy:
810
runs-on: ubuntu-latest
@@ -24,7 +26,7 @@ jobs:
2426
ln -s public/index.html public/404.html
2527
2628
- name: Deploy
27-
uses: JamesIves/github-pages-deploy-action@v4
29+
uses: JamesIves/github-pages-deploy-action@4.1.5
2830
with:
2931
branch: gh-pages
3032
folder: public

0 commit comments

Comments
 (0)