ci: add Verify Release workflow to gate release artifacts#124
Merged
ashishkurmi merged 2 commits intoMay 29, 2026
Conversation
Adds a manually-triggered (workflow_dispatch) gate that verifies a draft or published release meets all publishing requirements before it is made public: - Windows .exe (agent + launcher) and .msi installers are Authenticode-signed with a valid signature and an RFC3161 timestamp. - The macOS darwin binary is codesigned (Step Security Developer ID + hardened runtime) and notarized (Gatekeeper accepted / Notarized Developer ID). - Every relevant distributable binary has a corresponding signed checksum (<artifact>.sha256.sig) that verifies against the release operator's Ed25519 public key and matches the artifact's actual SHA-256, mirroring the loader's verification scheme exactly. A final gate job fails the run unless all checks pass. Accepts a tag and an optional repository input so it can be pointed at an upstream published release to confirm the workflow itself works. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
varunsh-coder
approved these changes
May 29, 2026
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.
Adds a manually-triggered (workflow_dispatch) gate that verifies a draft or published release meets all publishing requirements before it is made public:
A final gate job fails the run unless all checks pass. Accepts a tag and an optional repository input so it can be pointed at an upstream published release to confirm the workflow itself works.
What does this PR do?
Type of change
Testing
./stepsecurity-dev-machine-guard --verbose./stepsecurity-dev-machine-guard --json | python3 -m json.toolmake lintmake testRelated Issues