Skip to content

Move over to using built in templating #6

Move over to using built in templating

Move over to using built in templating #6

Workflow file for this run

name: Docs
on:
push:
branches:
- main
jobs:
deploy:
name: Deploy docs to GitHub Pages
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: cargo doc --no-deps
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc