Skip to content

Commit

Permalink
fix: yarn script naming
Browse files Browse the repository at this point in the history
  • Loading branch information
boazpoolman committed Dec 17, 2023
1 parent 446aba0 commit 47adafb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
uses: changesets/action@v1
with:
# This expects you to have a script called release which does a build for your packages and calls changeset publish
publish: yarn release
version: yarn version
publish: yarn release:publish
version: yarn release:prepare
env:
GITHUB_TOKEN: ${{ secrets.PLUGINPAL_BOT_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
"develop": "turbo run develop",
"eslint": "turbo run eslint",
"eslint:fix": "turbo run eslint:fix",
"release": "turbo run build:release && changeset publish",
"version": "changeset version && yarn install",
"release:publish": "turbo run build:release && changeset publish",
"release:prepare": "changeset version && yarn install",
"playground:install": "cd playground && yarn install",
"playground:build": "cd playground && yarn build",
"playground:start": "cd playground && yarn start",
Expand Down

0 comments on commit 47adafb

Please sign in to comment.