We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa195fc commit ac34561Copy full SHA for ac34561
.github/workflows/deploy.yml
@@ -3,6 +3,8 @@ on:
3
push:
4
branches:
5
- main
6
+ workflow_dispatch: # Makes it also possible to manually trigger deployment
7
+
8
jobs:
9
build-and-deploy:
10
runs-on: ubuntu-latest
@@ -21,7 +23,7 @@ jobs:
21
23
22
24
- name: Create 404.html alias for index.html
25
run: |
- ln -s public/index.html public/404.html
26
+ ln -sr public/index.html public/404.html
27
28
- name: Deploy
29
uses: JamesIves/github-pages-deploy-action@v4
0 commit comments