Skip to content

Commit

Permalink
Fix docs workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mwillsey committed Sep 23, 2021
1 parent 0d07765 commit bfc2f64
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ jobs:
with:
persist-credentials: false
- name: Build Docs
run: cargo doc --no-deps
run: |
cargo doc --no-deps
touch target/doc/.nojekyll # prevent jekyll from running
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.7.1
uses: JamesIves/github-pages-deploy-action@4.1
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
Expand Down

0 comments on commit bfc2f64

Please sign in to comment.