Skip to content

Commit

Permalink
Fix release builds running wrong npm script (#446)
Browse files Browse the repository at this point in the history
## Summary
<!-- Succinctly describe your change, providing context, what you've
changed, and why. -->

A follow-up to #444 - we run the wrong script when releasing 馃檮

## Checklist
<!-- Tick these items off as you progress. -->
<!-- If an item isn't applicable, ideally please strikeout the item by
wrapping it in "~~"" and suffix it with "N/A My reason for skipping
this." -->
<!-- e.g. "- [ ] ~~Added tests~~ N/A Only touches docs" -->

- [ ] ~~Added a [docs PR](https://github.com/inngest/website) that
references this PR~~ N/A
- [ ] ~~Added unit/integration tests~~ N/A
- [x] Added changesets if applicable

## Related
<!-- A space for any related links, issues, or PRs. -->
<!-- Linear issues are autolinked. -->
<!-- e.g. - INN-123 -->
<!-- GitHub issues/PRs can be linked using shorthand. -->
<!-- e.g. "- inngest/inngest#123" -->
<!-- Feel free to remove this section if there are no applicable related
links.-->
- #444
  • Loading branch information
jpwilliams committed Jan 2, 2024
1 parent faaee32 commit e1479e0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/proud-scissors-begin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@inngest/eslint-plugin": patch
---

Version bump to resolve release issues
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scripts": {
"preinstall": "npx only-allow pnpm",
"release:all": "pnpm run release:build && pnpm run release:publish && pnpm run release:tag",
"release:all": "pnpm run build && pnpm run release:publish && pnpm run release:tag",
"build": "pnpm run --if-present --recursive build",
"release:publish": "pnpm run --if-present --recursive release",
"release:tag": "node scripts/release/tag.js",
Expand Down

0 comments on commit e1479e0

Please sign in to comment.