Browse Source

Update docs.yml

YuKun Liu 3 years ago
parent
commit
5f7daedc5d
1 changed files with 8 additions and 5 deletions
  1. 8 5
      .github/workflows/docs.yml

+ 8 - 5
.github/workflows/docs.yml

@@ -22,9 +22,12 @@ jobs:
 
       - run: cd docs && mdbook build
 
-      - name: Deploy
-        uses: peaceiris/actions-gh-pages@v3
-        if: ${{ github.ref == 'refs/heads/main' }}
+      - name: Deploy 🚀
+        uses: JamesIves/github-pages-deploy-action@v4.2.3
         with:
-          github_token: ${{ secrets.GITHUB_TOKEN }}
-          publish_dir: ./docs/book
+          branch: gh-pages # The branch the action should deploy to.
+          folder: docs/book # The folder the action should deploy.
+          target-folder: docs/nightly/cli
+          repository-name: dioxuslabs/docsite
+          clean: false
+          token: ${{ secrets.DEPLOY_KEY }} # let's pretend I don't need it for now