fix(meta,web,docs): align share readiness and interview-facing docs #22
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
| name: Deploy Pages | ||
| on: | ||
| push: | ||
| branches: [main] | ||
| paths: ['web/**'] | ||
| workflow_dispatch: | ||
| jobs: | ||
| deploy: | ||
|
Check failure on line 10 in .github/workflows/pages.yml
|
||
| uses: rararulab/workflows/.github/workflows/deploy-pages.yml@main | ||
| with: | ||
| build-command: "cargo install mdbook --no-default-features && cd web && npm ci && npm run build && mdbook build docs && cp -r docs/book dist/docs" | ||
| output-dir: "web/dist" | ||