Skip to content

codegen: Fix ErrorDomain path #154

codegen: Fix ErrorDomain path

codegen: Fix ErrorDomain path #154

Workflow file for this run

name: docs
on:
pull_request:
push:
branches:
- "master"
workflow_dispatch:
jobs:
build-deploy:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: doc
args: --no-deps
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./target/doc
keep_files: false
destination_dir: docs