Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/build-sample-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ env:
jobs:
build-sample-app:
name: Building ${{ inputs.platform_name }} ${{ inputs.app_name }} sample app with SDK version ${{ inputs.sdk_version }}
runs-on: macos-15
runs-on: macos-26
defaults:
run:
working-directory: example # sets working directory for all steps in this job
Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:

- name: Setup ${{ inputs.platform_name }} environment for the ${{ inputs.platform }} sample app
if: ${{ inputs.platform == 'ios' }}
uses: customerio/mobile-ci-tools/github-actions/ios/setup-ios/v1@MacOS-15+iOS-26
uses: customerio/mobile-ci-tools/github-actions/ios/setup-ios/v1@macos-26

- name: Build and upload ${{ inputs.platform_name }} ${{ inputs.app_name }} sample app via Fastlane
id: build_app
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/deploy-npm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ env:
jobs:
deploy-cocoapods:
name: Deploy SDK to Cocoapods
runs-on: macos-15
# Despite the job name, nothing here touches CocoaPods: the steps are checkout, npm ci and
# an npm publish. It does not need a macOS runner, and the macOS pool is capped org-wide.
# Job id left alone on purpose — renaming it would change the check name.
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Checkout existing tag if manually running CI task
Expand Down
Loading