fix: template config from CLI #233
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: Documentation | |
on: | |
push: | |
branches: | |
- master | |
permissions: | |
contents: write | |
jobs: | |
docs: | |
name: Build Documentation | |
runs-on: ubuntu-latest | |
# if: "contains(github.event.head_commit.message, 'chore(release)')" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- run: npm i -g pnpm | |
- run: | | |
pnpm install --frozen-lockfile | |
cd docs && pnpm install --frozen-lockfile | |
- run: pnpm docs:build | |
- name: Deploy on GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/build |