Skip to content

Commit

Permalink
Fix publish script on changesets release action (#2960)
Browse files Browse the repository at this point in the history
### Description

Fixes yarn command used in release script of changesets action
https://github.com/hyperlane-xyz/hyperlane-monorepo/actions/runs/6959943453/job/18938332513
  • Loading branch information
yorhodes authored Nov 22, 2023
2 parents ef9c09b + 9e5c675 commit 31f60be
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
id: changesets
uses: changesets/action@v1
with:
publish: yarn build && yarn publish:all
publish: yarn release
env:
NPM_CONFIG_PROVENANCE: true
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"version:prepare": "yarn changeset version",
"version:check": "yarn changeset status",
"publish:all": "yarn changeset publish",
"release": "yarn build && yarn publish:all",
"postinstall": "husky install"
},
"workspaces": [
Expand Down

0 comments on commit 31f60be

Please sign in to comment.