Skip to content

Commit

Permalink
Fix release build (#2036)
Browse files Browse the repository at this point in the history
  • Loading branch information
drwpow authored Dec 4, 2024
1 parent 7dfcf25 commit e0d0823
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,26 @@ jobs:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
- name: Git setup
uses: actions/checkout@v4

- name: Node setup
uses: actions/setup-node@v4
with:
node-version: 22
- uses: pnpm/action-setup@v4

- name: pnpm setup
uses: pnpm/action-setup@v4
with:
version: 9.14.4
run_install: true
- uses: changesets/action@v1

# Do not remove! This ensures a build happens every time
- name: Build all packages
run: pnpm run build

- name: Changesets version and/or publish
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm exec changeset publish
Expand Down

0 comments on commit e0d0823

Please sign in to comment.