added pnpm lock #6
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 Nextra App to GitHub Pages | |
on: | |
push: | |
branches: | |
- ci-cd | |
pull_request: | |
branches: | |
- ci-cd | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 8 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: pnpm | |
cache-dependency-path: docs/pnpm-lock.yaml | |
- name: Install dependencies | |
working-directory: docs | |
run: pnpm install | |
- name: Build project | |
working-directory: docs | |
run: pnpm run build | |
- name: Deploy to GitHub Pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/out | |
publish_branch: gh-pages |