Skip to content

Commit

Permalink
ci: Change name of scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
drewdecarme committed Nov 1, 2023
1 parent 8b644ed commit db16dc0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ jobs:
with:
title: "chore: Version packages"
commit: "chore: Version packages"
version: yarn version # version so pnp can reconcile packages
publish: yarn publish # build and publish to npm
version: yarn packages:version # version so pnp can reconcile packages
publish: yarn packages:publish # build and publish to npm

- name: Packages - tag
# if: steps.changesets.outputs.hasChangesets == 'false'
# You can do something when a publish should happen.
run: yarn tag
run: yarn packages:tag
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
},
"scripts": {
"build": "yarn turbo build --filter='!with-*'",
"version": "yarn changeset version",
"publish": "yarn workspaces foreach --all --no-private npm publish --access public",
"tag": "yarn changeset tag"
"packages:version": "yarn changeset version",
"packages:publish": "yarn workspaces foreach --all --no-private npm publish --access public",
"packages:tag": "yarn changeset tag"
},
"author": "Drew DeCarme",
"license": "MIT",
Expand Down

0 comments on commit db16dc0

Please sign in to comment.