Conversation
- Add comprehensive code signing documentation - Create PowerShell signing script with retry logic - Update GitHub Actions workflow for conditional signing - Update build scripts to sign binaries when certificate available - Add .gitignore entries for certificate files - Document setup process and troubleshooting Co-authored-by: lqdev <11130940+lqdev@users.noreply.github.com>
- Add user-friendly Windows SmartScreen warning guide - Update CHANGELOG.md with code signing feature - Add SmartScreen warning notes to README and GETTING_STARTED - Provide clear instructions for users encountering warnings Co-authored-by: lqdev <11130940+lqdev@users.noreply.github.com>
- Document complete implementation status - Provide cost-benefit analysis - Include recommendations and timeline estimates - Ready for certificate acquisition when decided Co-authored-by: lqdev <11130940+lqdev@users.noreply.github.com>
Copilot
AI
changed the title
[WIP] Add code signing to eliminate unknown publisher warning
Add Windows code signing infrastructure to eliminate SmartScreen warnings
Oct 14, 2025
Owner
|
Closing associated draft PR. Code signing infrastructure deferred. |
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.
Overview
Implements complete infrastructure for Windows code signing to eliminate "Unknown Publisher" warnings and Windows Defender SmartScreen issues. All components are production-ready and await only the acquisition of a code signing certificate ($50-600/year depending on type).
Problem
Windows users downloading and running
podcast-tui.exeencounter SmartScreen warnings like "Windows protected your PC" and "Unknown Publisher," creating friction during installation and reducing user trust:This happens because:
Solution
This PR implements a complete code signing infrastructure that will automatically sign Windows binaries once a certificate is acquired. The system is designed to work seamlessly with or without a certificate, failing gracefully when none is present.
Key Features
Robust Signing Script (
scripts/sign-windows-binary.ps1)Build Integration
build-windows.ps1andbuild-releases-windows.ps1automatically attempt signingCI/CD Integration
WINDOWS_CERT_BASE64+WINDOWS_CERT_PASSWORD(for .pfx file)WINDOWS_CERT_THUMBPRINT(for certificate store)Security
.gitignoreto prevent accidental certificate commitsDocumentation
Created comprehensive guides for different audiences:
docs/CODE_SIGNING.md - Technical guide for maintainers covering:
docs/GITHUB_ACTIONS_CODE_SIGNING_SETUP.md - Quick setup guide:
docs/WINDOWS_SMARTSCREEN_WARNING.md - User-facing guide:
docs/inprogress/CODE_SIGNING_IMPLEMENTATION.md - Implementation status:
Usage Examples
Local signing (after certificate acquisition):
GitHub Actions (automatic):
Once certificate secrets are added to the repository, all releases will be automatically signed during the build process. No workflow changes needed - it's already configured.
What Still Needs to Be Done
The only remaining task is acquiring a code signing certificate:
Timeline: ~2 weeks from purchase to first signed release
Testing
All infrastructure has been validated:
.gitignoreSigning functionality will be tested with actual certificate upon acquisition.
Benefits
Once certificate is configured:
Backward Compatibility
This PR is fully backward-compatible:
Recommendation
Suggested certificate: SSL.com OV Code Signing Certificate (~$150/year)
See
docs/CODE_SIGNING.mdfor detailed comparison of certificate types.Closes: #[issue-number]
Documentation: See
docs/CODE_SIGNING.mdfor complete technical detailsStatus: Infrastructure complete, awaiting certificate purchase decision
Original prompt
Fixes #21
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.