Skip to content

Commit

Permalink
chore: fix yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
daxiongya committed Jun 24, 2024
1 parent 3c6c2b3 commit 44612e2
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/sync-tutorials.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,20 @@ jobs:
echo "::set-output name=changes::$temp"
rm temp.txt
- uses: pnpm/action-setup@v4
name: Install pnpm
with:
version: 8
run_install: false

- name: Install Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '18'
node-version: 20
cache: 'pnpm'

- name: Install Dependencies
run: npm install
run: pnpm install

- name: Generate Sidebar
run: npm run generate:sidebar
Expand Down

0 comments on commit 44612e2

Please sign in to comment.