Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/setup-mux/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ runs:
${{ runner.os }}-${{ runner.arch }}-bun-${{ steps.bun-version.outputs.version }}-node-modules-

- name: Cache bun install cache
if: steps.cache-node-modules.outputs.cache-hit != 'true'
id: cache-bun-install
uses: actions/cache@v4
with:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@ jobs:

- uses: ./.github/actions/setup-mux

# Skip signing setup for PRs - electron-builder skips signing anyway,
# but setting CSC_LINK forces our Makefile to build sequentially.
# Without CSC_LINK, x64 and arm64 build in parallel (~90s savings).
- name: Setup code signing
if: github.event_name != 'pull_request'
run: ./scripts/setup-macos-signing.sh
env:
MACOS_CERTIFICATE: ${{ secrets.MACOS_CERTIFICATE }}
Expand All @@ -28,6 +32,7 @@ jobs:
AC_APIKEY_ISSUER_ID: ${{ secrets.AC_APIKEY_ISSUER_ID }}

- name: Verify signing setup
if: github.event_name != 'pull_request'
run: |
if [ -n "${CSC_LINK:-}" ]; then
echo "✅ Code signing enabled"
Expand All @@ -39,8 +44,6 @@ jobs:

- name: Package for macOS
run: make dist-mac
env:
CSC_FOR_PULL_REQUEST: ${{ github.event.pull_request.number == 234 }}

- name: Upload macOS DMG (x64)
uses: actions/upload-artifact@v4
Expand Down