fix: remove unecessary keys #19
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, pre, develop] | |
jobs: | |
docs: | |
name: Build Documentation | |
runs-on: ubuntu-latest | |
# if: "contains(github.event.head_commit.message, 'chore(release)')" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- name: Install PNPM | |
run: npm i -g pnpm | |
- name: Install dependencies | |
run: | | |
pnpm install --frozen-lockfile | |
cd docs && pnpm install --frozen-lockfile | |
- name: Build Docs | |
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 |