ci: add Windows code signing and resource generation to release workflows - #128
Merged
samueltuyizere merged 2 commits intoJul 23, 2026
Merged
Conversation
…lows - Add Windows resource file generation (winres.json and winres.xml) for executable metadata - Generate architecture-specific .syso files (amd64, arm64) using go-winres during CI builds - Implement Windows binary code signing with certificate and timestamp authority - Update version information in resource files to match release version - Add *.syso to .gitignore to exclude generated build artifacts - Apply Windows signing to both beta and production release workflows - Enable proper Windows executable branding and authentication for distributed binaries
- Replace local osslsigncode signing with SignPath GitHub Action for secure code signing - Update beta-release.yml and release.yml workflows with new signing pipeline - Package Windows binaries (amd64 and arm64) into zip archive for SignPath submission - Configure SignPath API integration with organization and project credentials - Add post-signing step to extract and replace binaries from signed artifacts - Change credential detection from WINDOWS_SIGN_CERT/KEY to SIGNPATH_API_TOKEN - Improve security by using dedicated code signing service instead of local certificate handling
samueltuyizere
deleted the
52-windows-defender-blocks-installation-as-malware
branch
July 23, 2026 13:36
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.
Summary
SIGNPATH_API_TOKENsecret — builds still succeed without itContext
Fixes #52 — Windows Defender was quarantining the binary because it had no embedded metadata, no application manifest, and no digital signature. An unsigned, stripped Go binary that writes to the registry Run key looks suspicious to heuristic
scanners.