Skip to content

Commit

Permalink
maintenance: Fix release action
Browse files Browse the repository at this point in the history
  • Loading branch information
chmanie committed Aug 10, 2023
1 parent 4869ffb commit ac440ca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: changesets/action@v1
with:
version: pnpm run version
publish: pnpm --filter "!colony-js" run release
publish: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lint": "pnpm -r lint",
"no-git-changes": "./scripts/no-git-changes.sh",
"prepare": "husky install",
"release": "pnpm run lint && pnpm run build && pnpm run test && pnpm run no-git-changes && changeset publish",
"release": "pnpm --filter '!colony-js' run lint && pnpm --filter '!colony-js' run build && pnpm --filter '!colony-js' run test && pnpm run no-git-changes && changeset publish",
"version": "changeset version && pnpm install --lockfile-only",
"test": "pnpm -r test",
"typecheck": "pnpm -r typecheck"
Expand Down

0 comments on commit ac440ca

Please sign in to comment.