Distribution: add CI release workflow and make install.sh public-ready#1
Closed
byshing wants to merge 13 commits into
Closed
Distribution: add CI release workflow and make install.sh public-ready#1byshing wants to merge 13 commits into
byshing wants to merge 13 commits into
Conversation
- Generate .github/workflows/release.yml via cargo-dist for cross-platform builds on macOS arm64/x86, Linux arm64/x86, and Windows x86 - Remove allow-dirty = ["ci"] from dist-workspace.toml so dist can manage CI - Revert install.sh TEMP pre-launch blocks: replace gh CLI calls with curl for tag lookup, binary download, and source tarball download Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Sets macos-sign = true in dist-workspace.toml; regenerates release.yml to pass CODESIGN_CERTIFICATE, CODESIGN_CERTIFICATE_PASSWORD, and CODESIGN_IDENTITY secrets to macOS build runners. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
…t names Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
macOS 14 rejects OpenSSL 3.x p12 format; macos-15 handles it correctly. Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
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— generated bycargo-dist, builds cross-platform release artifacts (macOS arm64/x86, Linux arm64/x86, Windows x86) on everyv*tag push, uploads tarballs +sha256.sumchecksums, and produces shell/PowerShell installers with GitHub Attestationsallow-dirty = ["ci"]fromdist-workspace.toml— no longer needed now that CI is committed and managed by distinstall.shpre-launch workarounds — replace all threeghCLI calls with plaincurl: tag lookup via GitHub API, binary/checksum download from releases, and source tarball for skill installationTest plan
.github/workflows/release.ymlfor correctnessinstall.shno longer requiresghCLIgit tag v1.0.0 && git push origin v1.0.0to trigger the workflow🤖 Generated with Claude Code