gh-action: use npm install #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 Docusaurus to GitHub Pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
# 1. Check out the repository | |
- name: Check out the repository | |
uses: actions/checkout@v2 | |
# 2. Set up Node.js | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 22 | |
# 3. Install dependencies and deploy | |
- name: Deploy Docusaurus | |
run: | | |
cd website | |
npm install | |
GIT_USER=${{ secrets.GITHUB_ACTOR }} npm run deploy | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |