Skip to content

Commit b96145e

Browse files
Aleksandr Slapoguzovclaude
andcommitted
fix: pass SERVICE_ACCOUNT env vars to signing steps
🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent c845e1a commit b96145e

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,18 @@ jobs:
5151
chmod +x codesign-client-linux-amd64
5252
5353
- name: Sign Windows binary
54+
env:
55+
SERVICE_ACCOUNT_NAME: ${{ vars.SERVICE_ACCOUNT_NAME }}
56+
SERVICE_ACCOUNT_TOKEN: ${{ secrets.SERVICE_ACCOUNT_TOKEN }}
5457
run: |
5558
unzip dist/bin/codex-acp-x64-windows.zip -d dist/bin/windows-x64
56-
./codesign-client-linux-amd64 -extensions "jsign_replace=true" dist/bin/windows-x64/codex-acp.exe
57-
cd dist/bin/windows-x64 && zip -r ../codex-acp-x64-windows.zip codex-acp.exe && cd -
59+
./codesign-client-linux-amd64 -extensions "jsign_replace=true" dist/bin/windows-x64/codex-acp-x64-windows.exe
60+
cd dist/bin/windows-x64 && zip -r ../codex-acp-x64-windows.zip codex-acp-x64-windows.exe && cd -
5861
5962
- name: Sign macOS binaries
63+
env:
64+
SERVICE_ACCOUNT_NAME: ${{ vars.SERVICE_ACCOUNT_NAME }}
65+
SERVICE_ACCOUNT_TOKEN: ${{ secrets.SERVICE_ACCOUNT_TOKEN }}
6066
run: |
6167
./codesign-client-linux-amd64 \
6268
-denoted-content-type="content-type=application/x-mac-zip" \

0 commit comments

Comments
 (0)