Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,12 +312,17 @@ jobs:
publish-core-cocoapods:
name: Publish Core SDK to CocoaPods
needs: [mirror-and-release-kits]
runs-on: macos-15
runs-on: macos-latest
if: github.event.inputs.dry_run != 'true'
env:
XCODE_VERSION: "26.2"
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app

- name: Publish core podspecs
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
Expand All @@ -332,8 +337,10 @@ jobs:
publish-kit-cocoapods:
name: Publish ${{ matrix.kit.name }} to CocoaPods
needs: [load-matrix, publish-core-cocoapods]
runs-on: macos-15
runs-on: macos-latest
if: github.event.inputs.dry_run != 'true'
env:
XCODE_VERSION: ${{ matrix.kit.xcode_version || '26.2' }}
strategy:
fail-fast: false
matrix:
Expand All @@ -342,6 +349,9 @@ jobs:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

- name: Select Xcode
run: sudo xcode-select -s /Applications/Xcode_${{ env.XCODE_VERSION }}.app

- name: Wait for core SDK on CocoaPods CDN
run: |
VERSION=$(head -n 1 VERSION | tr -d '\r\n ')
Expand Down
Loading