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
8 changes: 7 additions & 1 deletion .github/workflows/ios-device-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,13 @@ jobs:
run: nix develop .# --command bash -c "bun install --frozen-lockfile"

- name: 🛠️ Build for device
run: nix develop .# --command bash -c "bun client ios:prebuild && bun client build:ios:signet:device"
run: |
nix develop .# --command bash -c "
bun client ios:prebuild &&
(/usr/bin/git diff --exit-code -- client/ios/Podfile.lock ||
(echo '❌ Podfile.lock changed after prebuild — commit the updated lockfile' && exit 1)) &&
bun client build:ios:signet:device
"

- name: 📦 Create IPA
run: |
Expand Down
10 changes: 8 additions & 2 deletions .github/workflows/noah-build-release-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,14 @@ jobs:
- name: 📦 Install dependencies
run: nix develop .# --command bash -c "bun install --frozen-lockfile"

- name: 🛠️ Build
run: nix develop .# --command bash -c "bun client ios:prebuild && bun client build:ios:ci"
- name: 🛠️ Build iOS Release App
run: |
nix develop .# --command bash -c "
bun client ios:prebuild &&
(/usr/bin/git diff --exit-code -- client/ios/Podfile.lock ||
(echo '❌ Podfile.lock changed after prebuild — commit the updated lockfile' && exit 1)) &&
bun client build:ios:ci
"

- name: 📁 Prepare build output
id: set_outputs
Expand Down