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
6 changes: 5 additions & 1 deletion .github/workflows/ios.testflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,15 @@ jobs:
defaults:
run:
working-directory: packages/mobile
runs-on: macos-latest
runs-on: macos-15
timeout-minutes: 90
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Select Xcode 26
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '26.0'
- name: Export version from package.json
run:
echo "PACKAGE_VERSION=$(grep '"version"' ../web/package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ios.verify.sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ jobs:
- name: Install dependencies
run: yarn install --immutable && yarn install:pods

- name: Build mobile workspace dependencies
run: yarn build:mobile

- name: Archive app without signing or upload
run: |
xcodebuild \
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/mobile.release.prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,15 @@ jobs:
defaults:
run:
working-directory: packages/mobile
runs-on: macos-14
runs-on: macos-15
timeout-minutes: 90
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Select Xcode 26
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '26.0'
- name: Export version from package.json
run:
echo "PACKAGE_VERSION=$(grep '"version"' ../web/package.json | cut -d '"' -f 4 | cut -d "-" -f 1)" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion packages/mobile/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ platform :ios do
end

def build_ios(scheme)
xcversion(version: "16.1")
xcversion(version: "26.0")
increment_version_number(
version_number: ENV['PACKAGE_VERSION'],
xcodeproj: 'ios/StandardNotes.xcodeproj'
Expand Down
Loading