Skip to content

Bump to 1.7.0 and add changelog entry #49

Bump to 1.7.0 and add changelog entry

Bump to 1.7.0 and add changelog entry #49

Workflow file for this run

on:
push:
branches:
- main
name: Deploy Documentation
jobs:
deploy-docs:
name: Deploy Documentation
runs-on: ubuntu-latest
strategy:
matrix:
rust:
- 1.57.0
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.rust }}
- run: (test -x $HOME/.cargo/bin/mdbook || cargo install --vers "^0.4" mdbook)
- run: mdbook build docs
- uses: JamesIves/github-pages-deploy-action@4.1.7
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs/book # The folder the action should deploy.