Add cross-platform binary release pipeline#2
Merged
Conversation
Package olist-code as standalone PyInstaller binaries for Linux/macOS/Windows, published as GitHub Release assets on `v*` tags, plus install.sh/install.ps1 scripts so users can install without Python, pip, or uv on their machine.
Gustavo André Ronconi (GustavoRonconi)
approved these changes
Jul 21, 2026
Gustavo André Ronconi (GustavoRonconi)
left a comment
There was a problem hiding this comment.
Suporte a windows rsrs
felipegaudio
added a commit
that referenced
this pull request
Jul 24, 2026
Package olist-code as standalone PyInstaller binaries for Linux/macOS/Windows, published as GitHub Release assets on `v*` tags, plus install.sh/install.ps1 scripts so users can install without Python, pip, or uv on their machine.
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
.github/workflows/release.yml) that builds standalone PyInstaller binaries for Linux, macOS, and Windows on everyv*tag push, smoke-tests each binary (olist-code version), and publishes them as GitHub Release assets.scripts/install.shandscripts/install.ps1so users can install with a singlecurl | bash/irm | iexcommand — no Python, pip, or uv required locally. Since the repo is private, the scripts usegh release download(already authenticated for most engineers) or fall back to aGITHUB_TOKENenv var.scripts/pyinstaller_entry.pyas the PyInstaller entry point, abuildoptional-dependency group (PyInstaller) inpyproject.toml, and fills in the previously-emptyREADME.mdwith install/usage instructions.Test plan
scripts/pyinstaller_entry.py) — binary built successfully andolist-code version/olist-code --helpran correctly..github/workflows/release.ymlYAML syntax parses correctly.pytest— full suite passes (45 passed), no regressions.ruff check— no new issues (pre-existing unrelated import-order warnings intests/test_adapter.pyonly).Notes / follow-ups
arm64(GitHub-hostedmacos-latestrunners); add anx86_64leg later if Intel Macs are still in use.v*prefix (e.g.v1.0.0) per team preference.