🚨 Fix: Commit dist files + Add CHANGELOG for GitHub Action #7
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
🚨 Critical Fix: GitHub Action Distribution Files + CHANGELOG
This PR fixes the broken GitHub Action by committing the required distribution files and establishes proper changelog maintenance.
Problem
Users were getting this error when trying to use the action:
Root Cause
dist/directory was included in.gitignore@v1, GitHub downloads the repository and expects to finddist/index.jsSolution
dist/from.gitignoredist/index.js, type definitions, source maps)CHANGELOG.mdfollowing Keep a Changelog formatFiles Changed
.gitignore- Removeddist/exclusiondist/- Added all 23 compiled distribution files (38,658 lines)CHANGELOG.md- Added changelog documenting v1.0.1 fixes and v1.0.0 initial releasePackage Management Note
This PR properly uses
pnpm-lock.yaml(notpackage-lock.json) since we use pnpm as our package manager.Impact
synctree/releasebot@v1dist/filesTesting
After merge, the action should work correctly when referenced as:
Related Issues & PRs
Priority: Critical - This restores functionality for all users of the action and establishes proper release documentation.