Skip to content

Commit

Permalink
chore: convert to pnpm and fix GitHub Actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbrntt committed Dec 24, 2024
1 parent 052de40 commit 5b58cbb
Show file tree
Hide file tree
Showing 5 changed files with 7,123 additions and 10,985 deletions.
39 changes: 32 additions & 7 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,44 @@ permissions:
id-token: write

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout your repository using git
uses: actions/checkout@v4

- name: Setup PNPM
uses: pnpm/action-setup@v2
with:
version: 8

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
cache-dependency-path: "./site/pnpm-lock.yaml"

- name: Install dependencies
working-directory: ./site
run: pnpm install --frozen-lockfile

- name: Build site
working-directory: ./site
run: pnpm build

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v3
with:
path: ./deploy
path: ./site/dist

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
78 changes: 0 additions & 78 deletions package-lock.json

This file was deleted.

Loading

0 comments on commit 5b58cbb

Please sign in to comment.