Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
lwwcas committed Oct 27, 2024
1 parent 45ba23a commit 056f755
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
node-version: ${{ matrix.node-version }}
cache: npm # or pnpm / yarn

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Install dependencies
run: npm install --ignore-scripts --omit=optional --legacy-peer-deps # or pnpm install / yarn install / bun install
run: npm ci --omit=optional --legacy-peer-deps # or pnpm install / yarn install / bun install

- name: Build with VitePress
run: npm run docs:build # or pnpm docs:build / yarn docs:build / bun run docs:build
Expand All @@ -63,6 +63,7 @@ jobs:
url: ${{ steps.deployment.outputs.page_url }}
needs: build
runs-on: ubuntu-latest

name: Deploy
steps:
- name: Deploy to GitHub Pages
Expand Down

0 comments on commit 056f755

Please sign in to comment.