Skip to content

Commit d009fd9

Browse files
anandgupta42claude
andcommitted
fix: [release] pre-publish smoke test also targets altimate-code
Second smoke test (Publish job, before npm publish) still did `find -path '*altimate-code-linux-x64/bin/altimate'` — the platform binary the de-dupe removes. Point it at altimate-code too. This was the last binary-name reference the de-dupe missed; verified via a full scan of release.yml + publish.ts (the remaining refs are the wrapper command and the release archive, both intact). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent bcb0f8a commit d009fd9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ jobs:
266266
- name: Pre-publish smoke test
267267
run: |
268268
# Resolve to an absolute path before we cd away from the workspace.
269-
BINARY=$(find "$(pwd)/packages/opencode/dist" -path '*altimate-code-linux-x64/bin/altimate' -type f | head -1)
269+
BINARY=$(find "$(pwd)/packages/opencode/dist" -path '*altimate-code-linux-x64/bin/altimate-code' -type f | head -1)
270270
if [ -z "$BINARY" ]; then
271271
echo "::error::No linux-x64 binary found in artifacts — cannot verify release"
272272
exit 1

0 commit comments

Comments
 (0)