Skip to content

Commit b5a409d

Browse files
committed
build: fix signing
Signed-off-by: Adam Setch <[email protected]>
1 parent 376434b commit b5a409d

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ on:
44
push:
55
branches:
66
- main
7-
- 'release/v**'
7+
- release/v**
88
pull_request:
9-
branches-ignore: 'release/v**' # macOS code-signing only works on `push` events, not `pull_request` events
9+
branches-ignore:
10+
- release/v** # macOS code-signing only works on `push` events, not `pull_request` events
1011

1112
jobs:
1213
lint:

.github/workflows/renovate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ on:
55
branches:
66
- main
77
paths:
8-
- 'renovate.json'
8+
- renovate.json
99
pull_request:
1010
paths:
11-
- 'renovate.json'
11+
- renovate.json
1212

1313
jobs:
1414
renovate-config-validator:

.github/workflows/website.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Website
22

33
on:
44
push:
5-
tags: 'v*'
5+
tags:
6+
- v*
67
workflow_dispatch: # For manually verify website deployment
78

89
jobs:

0 commit comments

Comments
 (0)