Skip to content

Commit 3574637

Browse files
committed
Use Xcode 11.4 for CI builds
1 parent 553c9e3 commit 3574637

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ on:
66
pull_request:
77
branches: '*'
88

9+
env:
10+
DEVELOPER_DIR: /Applications/Xcode_11.4.app/Contents/Developer
11+
912
jobs:
1013
test:
1114
runs-on: macos-latest

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
types:
66
- created
77

8+
env:
9+
DEVELOPER_DIR: /Applications/Xcode_11.4.app/Contents/Developer
10+
811
jobs:
912
release-build:
1013
runs-on: macos-latest
@@ -33,7 +36,7 @@ jobs:
3336
asset_content_type: application/zip
3437
- name: Publish to Cocoapods
3538
run: |
36-
POD_VERSION=$(echo $TAG_NAME | cut -c2-)
39+
export POD_VERSION=$(echo $TAG_NAME | cut -c2-)
3740
pod trunk push
3841
env:
3942
TAG_NAME: ${{ github.event.release.tag_name }}

0 commit comments

Comments
 (0)