Skip to content

build(deps): Depend on heck >=0.4, <0.6 (#508) #150

build(deps): Depend on heck >=0.4, <0.6 (#508)

build(deps): Depend on heck >=0.4, <0.6 (#508) #150

Workflow file for this run

name: Deploy to github pages
on:
push:
branches:
- master
permissions:
contents: write
jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.73.0
- name: Cargo doc
run: |
cargo doc --verbose --all
mv target/doc book/
- name: Deploy to gh-pages branch
uses: JamesIves/github-pages-deploy-action@v4.6.1
with:
token: ${{ secrets.GITHUB_TOKEN }}
folder: book
branch: gh-pages