fix(fmt): add missing quotation mark for add_schema_to_schemas
(#4319)
#118
This file contains 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
name: Generate cargo docs & engines size | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
publish-to-gh-pages: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v23 | |
- run: | | |
git config user.email "[email protected]" | |
git config user.name "prisma-bot" | |
- name: Generate cargo docs for the workspace to gh-pages branch | |
run: nix run .#publish-cargo-docs | |
- name: Publish engines size to gh-pages branch | |
run: nix run .#publish-engine-size |