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 696496f commit 53d1367Copy full SHA for 53d1367
.github/workflows/gh-pages.yml
@@ -48,16 +48,16 @@ jobs:
48
with:
49
cmd: build
50
51
- - name: SETUP PAGES
52
- uses: actions/configure-pages@v4
53
-
54
- name: RUN UPLOAD ARTIFACT
55
- uses: actions/upload-pages-artifact@v3
+ uses: actions/upload-artifact@v2
56
57
- path: "." # Upload entire repository
+ name: dist
+ path: dist # Upload entire repository
58
59
- name: RUN DEPLOY TO GITHUB-PAGES
60
- id: deployment
61
- uses: actions/deploy-pages@v4
62
- # with:
63
- # cname: thiagosaud.dev
+ uses: peaceiris/actions-gh-pages@v3
+ with:
+ github_token: ${{ secrets.GH_PAGES_DEPLOY_TOKEN }}
+ publish_branch: gh-pages
+ publish_dir: ./dist
+ #cname: thiagosaud.dev
0 commit comments