Skip to content

fix: skip deserialization, just use a &str (#519) #157

fix: skip deserialization, just use a &str (#519)

fix: skip deserialization, just use a &str (#519) #157

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/[email protected]
- name: Cargo doc
run: |
cargo doc --verbose --all
mv target/doc book/
- name: Deploy to gh-pages branch
uses: JamesIves/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
folder: book
branch: gh-pages