Skip to content

Commit 974b414

Browse files
authored
Merge pull request #86 from patrickkabwe/fix/ios-build
Fix/ios build
2 parents e9f61f7 + 610a09a commit 974b414

3 files changed

Lines changed: 17 additions & 22 deletions

File tree

.github/workflows/ios-build.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,12 +47,12 @@ jobs:
4747
runs-on: macOS-15
4848
steps:
4949
- uses: actions/checkout@v4
50-
- uses: oven-sh/setup-bun@v2
51-
5250
- name: Setup Xcode
5351
uses: maxim-lobanov/setup-xcode@v1
5452
with:
55-
xcode-version: latest-stable
53+
xcode-version: 16.4
54+
55+
- uses: oven-sh/setup-bun@v2
5656

5757
- name: Install npm dependencies (bun)
5858
run: bun install
@@ -97,13 +97,13 @@ jobs:
9797
- uses: actions/checkout@v4
9898
- uses: oven-sh/setup-bun@v2
9999

100-
- name: Install npm dependencies (bun)
101-
run: bun install
102-
103100
- name: Setup Xcode
104101
uses: maxim-lobanov/setup-xcode@v1
105102
with:
106-
xcode-version: latest-stable
103+
xcode-version: 16.4
104+
105+
- name: Install npm dependencies (bun)
106+
run: bun install
107107

108108
- name: Disable new architecture in Podfile
109109
run: sed -i "" "s/ENV\['RCT_NEW_ARCH_ENABLED'\] = '1'/ENV['RCT_NEW_ARCH_ENABLED'] = '0'/g" example/ios/Podfile

.github/workflows/release.yml

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,14 @@
11
name: Release
22

33
on:
4-
push:
5-
branches:
6-
- main
7-
- next
8-
paths-ignore:
9-
- 'docs/**'
4+
workflow_dispatch:
105

116
permissions:
127
contents: read
138

149
concurrency:
15-
group: ${{ github.workflow }}-${{ github.ref }}
16-
cancel-in-progress: true
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
1712

1813
jobs:
1914
release:
@@ -37,17 +32,17 @@ jobs:
3732
id: bun-cache
3833
uses: actions/cache@v4
3934
with:
40-
path: ~/.bun/install/cache
41-
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
42-
restore-keys: |
43-
${{ runner.os }}-bun-
44-
35+
path: ~/.bun/install/cache
36+
key: ${{ runner.os }}-bun-${{ hashFiles('**/bun.lockb') }}
37+
restore-keys: |
38+
${{ runner.os }}-bun-
39+
4540
- name: Install npm dependencies (bun)
4641
run: bun install
4742

4843
- name: Build lib
4944
run: bun run build
50-
45+
5146
- name: Release
5247
env:
5348
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@
121121
]
122122
]
123123
}
124-
}
124+
}

0 commit comments

Comments
 (0)