Merge pull request #609 from devforth/next #5
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 Documentation | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - 'adminforth/documentation/**' | |
| - '.github/workflows/deploy_documentation.yaml' | |
| jobs: | |
| deploy: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: adminforth | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'pnpm' | |
| cache-dependency-path: adminforth/pnpm-lock.yaml | |
| - name: Install dependencies | |
| run: | | |
| pnpm i | |
| cd documentation | |
| pnpm i | |
| - name: Build and deploy docs | |
| run: pnpm rollout-doc |