docs(core): add autoMap mapping configuration docs (#539) #222
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: Docusaurus | |
on: | |
# Allow triggering this workflow manually via GitHub CLI/web | |
workflow_dispatch: | |
push: | |
branches: [main] | |
paths: | |
- 'packages/documentations/docusaurus.config.js' | |
- 'packages/documentations/sidebars.js' | |
- 'packages/documentations/*.json' | |
- 'packages/documentations/docs/**/*.md' | |
- 'packages/documentations/docs/**/*.mdx' | |
- 'packages/documentations/static/**/*.*' | |
- 'packages/documentations/src/**/*.js' | |
- 'packages/documentations/src/**/*.css' | |
jobs: | |
build-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
persist-credentials: false | |
fetch-depth: 0 # otherwise, you will failed to push refs to dest repo | |
- uses: pnpm/[email protected] | |
with: | |
version: latest | |
run_install: false | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: | | |
pnpm install | |
pnpm --filter "./packages/documentations" install | |
- name: Create local build artifacts | |
run: | | |
echo 'Building documentations...' | |
pnpm exec nx build documentations | |
- name: Create local changes and commit | |
run: | | |
cd packages/documentations/build | |
git init | |
git add . | |
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
git commit -m "docs: build docs" -a | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: docs | |
force: true | |
directory: packages/documentations/build |