|
24 | 24 | - run: bun run typecheck |
25 | 25 | - run: bun test |
26 | 26 | - run: bun run bundle:all |
27 | | - - run: bun run package:all |
28 | 27 |
|
29 | 28 | - name: Download Codesign Client and signatures |
30 | 29 | run: | |
@@ -55,23 +54,23 @@ jobs: |
55 | 54 | SERVICE_ACCOUNT_NAME: ${{ vars.SERVICE_ACCOUNT_NAME }} |
56 | 55 | SERVICE_ACCOUNT_TOKEN: ${{ secrets.SERVICE_ACCOUNT_TOKEN }} |
57 | 56 | run: | |
58 | | - unzip dist/bin/codex-acp-x64-windows.zip -d dist/bin/windows-x64 |
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 - |
| 57 | + ./codesign-client-linux-amd64 -extensions "jsign_replace=true" dist/bin/codex-acp-x64-windows.exe |
61 | 58 |
|
62 | 59 | - name: Sign macOS binaries |
63 | 60 | env: |
64 | 61 | SERVICE_ACCOUNT_NAME: ${{ vars.SERVICE_ACCOUNT_NAME }} |
65 | 62 | SERVICE_ACCOUNT_TOKEN: ${{ secrets.SERVICE_ACCOUNT_TOKEN }} |
66 | 63 | run: | |
67 | 64 | ./codesign-client-linux-amd64 \ |
68 | | - -denoted-content-type="content-type=application/x-mac-zip" \ |
| 65 | + -denoted-content-type="content-type=application/x-mach-binary" \ |
69 | 66 | -extensions "mac_codesign_force=true,mac_codesign_options=runtime" \ |
70 | | - dist/bin/codex-acp-x64-darwin.zip |
| 67 | + dist/bin/codex-acp-x64-darwin |
71 | 68 | ./codesign-client-linux-amd64 \ |
72 | | - -denoted-content-type="content-type=application/x-mac-zip" \ |
| 69 | + -denoted-content-type="content-type=application/x-mach-binary" \ |
73 | 70 | -extensions "mac_codesign_force=true,mac_codesign_options=runtime" \ |
74 | | - dist/bin/codex-acp-arm64-darwin.zip |
| 71 | + dist/bin/codex-acp-arm64-darwin |
| 72 | +
|
| 73 | + - run: bun run package:all |
75 | 74 |
|
76 | 75 | - name: Create Release |
77 | 76 | uses: softprops/action-gh-release@v2 |
|
0 commit comments