feat(ci): add dispatchable unsigned desktop build-artifacts workflow#2864
Open
harshitsinghbhandari wants to merge 4 commits into
Open
feat(ci): add dispatchable unsigned desktop build-artifacts workflow#2864harshitsinghbhandari wants to merge 4 commits into
harshitsinghbhandari wants to merge 4 commits into
Conversation
Adds a workflow_dispatch-only workflow that builds the desktop app for all four platforms at a pinned ref with a caller-supplied version, uploads each installer as a 1-day run artifact, and emits a digests.json artifact with per-platform SHA256 hashes. No release, no secrets, and macOS builds are intentionally unsigned (the release conductor signs downstream). Closes #2862 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
… map) Artifact names are now mac-arm64, mac-x64, win, linux (contained filenames keep the stable alias names), and digests.json is a flat filename to sha256 map, per the release conductor contract. Co-Authored-By: Claude Fable 5 <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
Adds
.github/workflows/build-artifacts.yml, aworkflow_dispatch-only workflow that lets an external release conductor drive a desktop build and consume the outputs as run artifacts:ref(git ref/SHA to build, checked out viaactions/checkoutref:) andversion(stamped intofrontend/package.jsonusing the exact nightly stamping mechanism fromfrontend-nightly.yml).macos-latest), mac x64 (macos-15-intel), windows (windows-latest), linux (ubuntu-latest).macos-signing-setupand sets no Apple env vars, andforge.config.tsonly activatesosxSign/osxNotarizewhen those vars are present. The conductor signs downstream.mac-arm64,mac-x64,win,linux, each containing the existing stable alias filename (agent-orchestrator-darwin-arm64.zip,agent-orchestrator-darwin-x64.zip,agent-orchestrator-win32-x64.exe,agent-orchestrator-linux-x64.AppImage), uploaded withretention-days: 1.digestsartifact containsdigests.json, a flat JSON object mapping each of those four filenames to its sha256 hex string; the conductor reads it to verify hashes before signing. Digests are also echoed to the step summary.permissions: contents: readonly.Strictly additive: no existing workflow, signing, or release path is touched.
Verification
actionlintclean,prettier --checkclean.workflow_dispatchverification run of the final contract (all four platforms green, artifactsmac-arm64/mac-x64/win/linuxuploaded, flatdigests.jsonemitted): https://github.com/AgentWrapper/agent-orchestrator/actions/runs/29832852780 (earlier pre-contract run: https://github.com/AgentWrapper/agent-orchestrator/actions/runs/29775090632)Closes #2862
🤖 Generated with Claude Code