Skip to content

Commit

Permalink
changed deploy to use pnpm
Browse files Browse the repository at this point in the history
  • Loading branch information
sethpjohnson committed Dec 11, 2024
1 parent 2adb96a commit 9fbd5dd
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,15 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v4
with:
node-version: 20
cache: 'npm'
- run: npm ci
- run: npm run build
cache: 'pnpm'
- run: pnpm install
- run: pnpm run build
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
Expand Down

0 comments on commit 9fbd5dd

Please sign in to comment.