diff options
author | Aleksey Kladov <[email protected]> | 2020-03-04 17:08:47 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-03-04 17:09:10 +0000 |
commit | e5aed5c593c64336cd53ca0ddfcff59009cae534 (patch) | |
tree | 7b86d3d9a4df5c3875a16e7adf7e49bfecef0d75 | |
parent | 1e305b89ed0ee195f9c8e6229140dfe7b4ce6d19 (diff) |
Update rustdoc action
-rw-r--r-- | .github/workflows/rustdoc.yaml | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/.github/workflows/rustdoc.yaml b/.github/workflows/rustdoc.yaml index 338a4b2ab..1f4a3cfd3 100644 --- a/.github/workflows/rustdoc.yaml +++ b/.github/workflows/rustdoc.yaml | |||
@@ -27,10 +27,8 @@ jobs: | |||
27 | run: cargo doc --all --no-deps | 27 | run: cargo doc --all --no-deps |
28 | 28 | ||
29 | - name: Deploy Docs | 29 | - name: Deploy Docs |
30 | uses: peaceiris/[email protected] | 30 | uses: peaceiris/actions-gh-pages@364c31d33bb99327c77b3a5438a83a357a6729ad # v3.4.0 |
31 | env: | 31 | github_token: ${{ secrets.GITHUB_TOKEN }} |
32 | ACTIONS_DEPLOY_KEY: ${{ secrets.ACTIONS_DEPLOY_KEY }} | 32 | publish_branch: gh-pages |
33 | PUBLISH_BRANCH: gh-pages | 33 | publish_dir: ./book |
34 | PUBLISH_DIR: ./target/doc | 34 | force_orphan: true |
35 | with: | ||
36 | forceOrphan: true | ||