add an impl_typed_uuid_kinds macro with x-rust-type support (#71) #98
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| branches: | |
| - main | |
| name: Docs | |
| jobs: | |
| docs: | |
| name: Build and deploy documentation | |
| concurrency: ci-${{ github.ref }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - uses: dtolnay/rust-toolchain@stable | |
| - uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6 # v2 | |
| - uses: taiki-e/install-action@just | |
| - name: Build rustdoc | |
| run: just rustdoc | |
| - name: Organize | |
| run: | | |
| rm -rf target/gh-pages | |
| mkdir target/gh-pages | |
| mv target/doc target/gh-pages/rustdoc | |
| touch target/gh-pages/.nojekyll | |
| - name: Deploy | |
| uses: JamesIves/github-pages-deploy-action@releases/v4 | |
| with: | |
| branch: gh-pages | |
| folder: target/gh-pages | |
| single-commit: true |