Skip to content

Commit b9a4c97

Browse files
committed
build: switch Xcode
1 parent 1de4018 commit b9a4c97

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/build.yaml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
needs: check_cli_cache
3939
if: |
4040
needs.check_cli_cache.outputs.cache-hit != 'true' &&
41-
(github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.message, '[build]'))
41+
github.event_name == 'workflow_dispatch'
4242
runs-on: macos-latest
4343
steps:
4444
- uses: actions/checkout@v4
@@ -83,7 +83,7 @@ jobs:
8383

8484
build_macos:
8585
needs: [check_cli_cache, build_cli]
86-
if: always() && (github.event_name == 'workflow_dispatch' || contains(github.event.head_commit.message, '[build]'))
86+
if: always() && github.event_name == 'workflow_dispatch'
8787
runs-on: macos-latest
8888
steps:
8989
- uses: actions/checkout@v4
@@ -121,6 +121,9 @@ jobs:
121121
- name: Sign guppy binary
122122
run: codesign -s "Developer ID Application" ./cli/dist/guppy
123123

124+
- name: Switch Xcode
125+
run: sudo xcode-select -s /Applications/Xcode_16.2.app
126+
124127
- name: Build macOS archive
125128
env:
126129
VERSION: ${{ needs.check_cli_cache.outputs.version }}

0 commit comments

Comments
 (0)