Use shellshock publish release command#18
Merged
jerrod-storm merged 3 commits intomainfrom Mar 6, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the release workflow to use the project’s shell/shock release publisher and expands manifest metadata to better describe version semantics.
Changes:
- Switched GitHub Release creation to
./shell/shock publish-releasein the release workflow. - Added a
namingsection tomanifest.jsonto explain version segment meaning. - Bumped the
shell/.shocksubmodule to a newer commit.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 3 comments.
| File | Description |
|---|---|
shell/.shock |
Updates the shock submodule commit used by release tooling. |
manifest.json |
Adds version-segment naming metadata alongside latest/stable. |
.github/workflows/_create_release.yaml |
Uses shock publish-release instead of gh release create. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request updates the release workflow and metadata for the project, focusing on improving release management and providing better context for versioning. The most important changes are grouped below:
Release Workflow Improvements:
.github/workflows/_create_release.yamlnow uses the custom./shell/shock publish-releasescript instead of the standardgh release createcommand, streamlining and potentially customizing the release process.Metadata and Versioning Enhancements:
manifest.jsonfile now includes a newnamingobject that describes the meaning of each version segment (major,minor,patch), providing clearer context for release versions.Submodule Update:
shell/.shocksubmodule was updated to a newer commit, which may bring in bug fixes or new features for release publishing.