Skip to content
Merged
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
5 changes: 4 additions & 1 deletion .github/workflows/cocoapods-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,17 @@ on:
tags-ignore:
- 'android-*'

permissions:
contents: read

jobs:
Deploy:
name: Publish
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: maxim-lobanov/setup-xcode@v1
- uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0
with:
xcode-version: latest-stable
- name: Update Specs Repo
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,17 @@ on:
- '.github/**'
- '**/*.podspec'

permissions:
contents: read

jobs:
Pod-Lint:
name: Cocoapods Lint
runs-on: macos-15
steps:
- name: Checkout
uses: actions/checkout@v6
- uses: maxim-lobanov/setup-xcode@v1
- uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0
with:
xcode-version: latest-stable
- name: Update Specs Repo
Expand All @@ -26,7 +29,7 @@ jobs:
name: Build Device
runs-on: macos-15
steps:
- uses: maxim-lobanov/setup-xcode@v1
- uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0
with:
xcode-version: latest-stable
- name: Checkout
Expand All @@ -35,7 +38,7 @@ jobs:
working-directory: ios/Demo/Demo
run: |
echo "$IOS_TEST_ENTITLEMENTS_CONTENTS" > DemoDebug.entitlements
- uses: maxim-lobanov/setup-xcode@v1
- uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0
with:
xcode-version: latest-stable
- name: Build
Expand All @@ -55,7 +58,7 @@ jobs:
env:
DEVICE_NAME: "iPhone 16"
steps:
- uses: maxim-lobanov/setup-xcode@v1
- uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0
with:
xcode-version: latest-stable
- name: Checkout
Expand All @@ -77,7 +80,7 @@ jobs:
env:
DEVICE_NAME: "iPhone 16"
steps:
- uses: maxim-lobanov/setup-xcode@v1
- uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0
with:
xcode-version: latest-stable
- name: Checkout
Expand All @@ -86,7 +89,7 @@ jobs:
working-directory: ios/Demo/Demo
run: |
echo "$IOS_TEST_ENTITLEMENTS_CONTENTS" > DemoDebug.entitlements
- uses: maxim-lobanov/setup-xcode@v1
- uses: maxim-lobanov/setup-xcode@ed7a3b1fda3918c0306d1b724322adc0b8cc0a90 # v1.7.0
with:
xcode-version: latest-stable
- name: Boot simulator
Expand Down
Loading