Skip to content

Commit 90dc337

Browse files
committed
fix: macos code signing
Signed-off-by: Adam Setch <[email protected]>
1 parent 19b88a2 commit 90dc337

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.github/workflows/ci.yml

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

1111
jobs:
12+
prepare:
13+
if: ${{ !startsWith(github.head_ref, 'release/v') }}
14+
name: Prepare CI
15+
runs-on: ubuntu-latest
16+
steps:
17+
- run: echo Running CI for branch ${{ github.head_ref }}
18+
1219
lint:
1320
name: Lint App
1421
uses: ./.github/workflows/lint.yml
15-
if: ${{ !startsWith(github.head_ref, 'release/v') }}
22+
needs: prepare
1623

1724
tests:
1825
name: Tests
1926
uses: ./.github/workflows/test.yml
2027
needs: lint
21-
if: ${{ !startsWith(github.head_ref, 'release/v') }}
2228

2329
build:
2430
name: Build
2531
uses: ./.github/workflows/build.yml
2632
needs: tests
27-
if: ${{ !startsWith(github.head_ref, 'release/v') }}

0 commit comments

Comments
 (0)