Skip to content

Commit

Permalink
feat(ci): Update release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wottpal committed Jul 30, 2024
1 parent ed199fd commit 52c637e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,23 @@ jobs:
strategy:
matrix:
node-version: [20]
pnpm-version: [8.11]
pnpm-version: [9.6.0]

steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Checkout
uses: actions/checkout@v4
with:
# This makes Actions fetch all Git history so that Changesets can generate changelogs with the correct commits
fetch-depth: 0
submodules: true

- name: Set up pnpm action ${{ matrix.pnpm-version }}
uses: pnpm/action-setup@v2
uses: pnpm/action-setup@v4
with:
version: ${{ matrix.pnpm-version }}

- name: Set up Node ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
cache: 'pnpm'
node-version: ${{ matrix.node-version }}
Expand Down

0 comments on commit 52c637e

Please sign in to comment.