Fix note about locally hosted Deno library #16
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: Deploy docs to GitHub Pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Deploy docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 21 | |
- name: Install pnpm | |
run: npm install -g pnpm | |
- name: Build API Reference for frontend-react | |
working-directory: frontend-react | |
run: | | |
pnpm install --frozen-lockfile | |
pnpm run docs | |
- name: Deploy docs | |
uses: mhausenblas/[email protected] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CUSTOM_DOMAIN: docs.telestion.wuespace.de | |
CONFIG_FILE: docs/mkdocs.yml | |
EXTRA_PACKAGES: build-base | |
REQUIREMENTS: docs/requirements.txt |