Skip to content

Commit

Permalink
workflows: deploy-website: Using yarn
Browse files Browse the repository at this point in the history
Signed-off-by: Rem01Gaming <Rem01_Gaming@proton.me>
  • Loading branch information
Rem01Gaming committed Oct 14, 2024
1 parent 1224a0c commit 48008ed
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- website
paths:
- '.github/workflows/deploy-website.yml'
- 'website/**'
Expand Down Expand Up @@ -37,10 +38,12 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: yarn # or pnpm / yarn
cache-dependency-path: website/yarn.lock
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Install dependencies
run: npm install
run: yarn install --frozen-lockfile
- name: Build with VitePress
run: |
yarn docs:build
Expand Down

0 comments on commit 48008ed

Please sign in to comment.