feat: add GitHub Actions CI/CD for multi-platform builds - #50
Closed
cyxer000 wants to merge 1 commit into
Closed
Conversation
op7418
commented
Feb 10, 2026
Owner
Closing: we already have a CI/CD workflow (.github/workflows/build.yml) that covers multi-platform builds with more features (workflow_dispatch platform selector, auto-release on tags, changelog generation). This PR is now redundant. Thanks for the contribution though — if you'd like to contribute a separate CI check workflow (lint/typecheck/test on PRs), that would be welcome! |
op7418 added a commit
that referenced
this pull request
Jul 4, 2026
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
op7418 added a commit
that referenced
this pull request
Jul 4, 2026
youcho2 pushed a commit
to youcho2/CodePilot
that referenced
this pull request
Aug 11, 2026
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
youcho2 pushed a commit
to youcho2/CodePilot
that referenced
this pull request
Aug 11, 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 freeto 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
v*) and creates GitHub Releases with all platform artifactsMotivation
The project owner mentioned in #31 that they're exploring GitHub Actions CI/CD for Windows builds since macOS cross-compilation has limitations on Apple Silicon. This PR provides a complete multi-platform build pipeline that also addresses Linux support requested in #47.
Workflows
build.yml- Build & Releasev*tags, manualworkflow_dispatchmacos-14(Apple Silicon) with matrix for arm64/x64, produces.dmgwindows-latest, produces.exe(NSIS installer)ubuntu-latest, produces.AppImage,.deb,.rpmsoftprops/action-gh-release@v2ci.yml- CI Checksmainnpm run lintnpx tsc --noEmitTest plan
Addresses #31#47