We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da568a1 commit aae3943Copy full SHA for aae3943
.github/workflows/ci.yml
@@ -9,8 +9,8 @@ on:
9
- main
10
11
jobs:
12
- prepare:
13
- if: ${{ !startsWith(github.head_ref, 'release/v') }}
+ prepare: # macOS code-signing only works on `push` events and not `pull_request` events
+ if: ${{ !startsWith(github.head_ref, 'release/v') }}
14
name: Prepare CI
15
runs-on: ubuntu-latest
16
steps:
.github/workflows/release.yml
@@ -3,7 +3,7 @@ name: Release
3
on:
4
push:
5
branches:
6
- - release/v*.*.*
+ - release/v*.*.* # macOS code-signing only works on `push` events and not `pull_request` events
7
8
lint:
0 commit comments