We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 779668d commit 77565ecCopy full SHA for 77565ec
1 file changed
.github/workflows/deploy-docs.yml
@@ -53,19 +53,10 @@ jobs:
53
env:
54
NUXT_APP_BASE_URL: /nuxt-ui-formkit/
55
56
- - name: Upload artifact
57
- uses: actions/upload-pages-artifact@v3
+ - name: Deploy
+ uses: peaceiris/actions-gh-pages@v4
58
with:
59
- path: ./docs/.output/public
60
-
61
- deploy:
62
- environment:
63
- name: github-pages
64
- url: ${{ steps.deployment.outputs.page_url }}
65
- runs-on: ubuntu-latest
66
- needs: build
67
- steps:
68
- - name: Deploy to GitHub Pages
69
- id: deployment
70
- uses: actions/deploy-pages@v4
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: ./docs/.output/public
+ # cname: example.com # if wanna deploy to custom domain
71
0 commit comments