Skip to content

Commit

Permalink
fix: Changeset release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
wottpal committed Oct 14, 2023
1 parent 6c0c70a commit 6085c19
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@ jobs:
node-version: ${{ matrix.node-version }}

- name: Install Dependencies
run: pnpm install --lockfile-only
run: NODE_ENV=development pnpm install --lockfile-only

- name: Create Release Pull Request
uses: changesets/action@v1
with:
title: 'chore(changeset): Bump package version'
commit: 'chore(changeset): Bump package version'
version: pnpm changeset version
publish: pnpm changeset publish
version: pnpm run changeset:version
publish: pnpm run changeset:publish
env:
GITHUB_TOKEN: ${{ secrets.CHANGESETS_PAT }}
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,9 @@
"start": "pnpm run -F frontend start",
"lint": "pnpm run -F '*' lint",
"lint:fix": "pnpm run -F '*' lint:fix",
"lint:format": "pnpm run -F '*' lint:format"
"lint:format": "pnpm run -F '*' lint:format",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
Expand Down

1 comment on commit 6085c19

@vercel
Copy link

@vercel vercel bot commented on 6085c19 Oct 14, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.