We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28adb04 commit 804df8aCopy full SHA for 804df8a
.github/workflows/deploy-docs.yml
@@ -38,9 +38,18 @@ jobs:
38
npm run docs:build
39
echo "::endgroup::"
40
41
+ # Deployment job
42
+ deploy:
43
+ environment:
44
+ name: github-pages
45
+ url: ${{ steps.deployment.outputs.page_url }}
46
+ runs-on: ubuntu-latest
47
+ needs: build
48
+ steps:
49
- name: Deploy to GitHub Pages
- uses: peaceiris/actions-gh-pages@v4
50
+ id: deployment
51
+ uses: actions/deploy-pages@v4
52
with:
- github_token: ${{ secrets.GITHUB_TOKEN }}
53
+ # github_token: ${{ secrets.GITHUB_TOKEN }}
54
publish_dir: ./package/official-site/.vitepress/dist
- force_orphan: true
55
+ force_orphan: true
0 commit comments