Skip to content

Commit aae3943

Browse files
committed
fix: macos code signing
Signed-off-by: Adam Setch <[email protected]>
1 parent da568a1 commit aae3943

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ on:
99
- main
1010

1111
jobs:
12-
prepare:
13-
if: ${{ !startsWith(github.head_ref, 'release/v') }}
12+
prepare: # macOS code-signing only works on `push` events and not `pull_request` events
13+
if: ${{ !startsWith(github.head_ref, 'release/v') }}
1414
name: Prepare CI
1515
runs-on: ubuntu-latest
1616
steps:

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Release
33
on:
44
push:
55
branches:
6-
- release/v*.*.*
6+
- release/v*.*.* # macOS code-signing only works on `push` events and not `pull_request` events
77

88
jobs:
99
lint:

0 commit comments

Comments
 (0)