on: push: branches: - develop paths-ignore: - 'docs/**' - 'config/**' - '**.md' - '.dockerignore' - 'docker/**' - '.gitignore' name: Build API docs env: RUST_TOOLCHAIN: nightly-2023-10-21 jobs: apidoc: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 - uses: arduino/setup-protoc@v1 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - uses: dtolnay/rust-toolchain@master with: toolchain: ${{ env.RUST_TOOLCHAIN }} - run: cargo doc --workspace --no-deps --document-private-items - run: | cat < target/doc/index.html EOF - name: Publish dist directory uses: JamesIves/github-pages-deploy-action@v4 with: folder: target/doc