Fix workflow to install dependencies from docs folder #4
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: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
working-directory: docs | |
run: npm install | |
- name: Build project | |
working-directory: docs | |
run: npm run build | |
- name: Export to static files | |
working-directory: docs | |
run: npm run export | |
- 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 |