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 31d9c2f commit 1b57334Copy full SHA for 1b57334
.github/workflows/deploy.yml
@@ -29,12 +29,11 @@ jobs:
29
# Copy Files
30
- name: Copy CNAME and 404.html
31
run: |
32
- cp ./docs/CNAME ./dist/CNAME
33
- cp ./dist/index.html ./dist/404.html
+ cp ./build/index.html ./build/404.html
34
# Deploy to GitHub Pages
35
- name: Deploy
36
uses: peaceiris/actions-gh-pages@v3
37
with:
38
personal_token: ${{ secrets.PERSONAL_TOKEN }}
39
- publish_dir: ./dist
+ publish_dir: ./build
40
publish_branch: gh-pages
0 commit comments