Skip to content

Commit

Permalink
fix: Fix Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ShadowRZ committed Jun 19, 2024
1 parent 0683dc3 commit a79a469
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,16 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: corepack enable
- uses: actions/setup-node@v3
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: 'pnpm'
# Pick your own package manager and build script
- run: pnpm install
- run: pnpm run build --preset=github_pages
Expand Down

0 comments on commit a79a469

Please sign in to comment.