Skip to content

Fix spacing issue introduced in #614 #291

Fix spacing issue introduced in #614

Fix spacing issue introduced in #614 #291

Workflow file for this run

name: Pages
on:
push:
branches:
- master
jobs:
pages:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
with:
submodules: recursive
- name: Build documentation
run: cargo doc --verbose --features tokio,winit
- name: Deploy documentation
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
force_orphan: true