Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(.github/workflows): iOS SDK version issue #3239

Merged
merged 2 commits into from
Apr 3, 2024
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
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
./gradlew assembleDebug

ios:
runs-on: macos-latest
runs-on: macos-14
timeout-minutes: 60
if: github.actor != 'dependabot[bot]'

Expand All @@ -64,6 +64,11 @@ jobs:
with:
node-version: '20.11.1'

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Install Ionic CLI
run: npm install -g @ionic/cli

Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/firebase-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
firebase appdistribution:distribute ./android/app/build/outputs/bundle/release/app-release.aab --app ${APP_ID} --groups "${TEST_GROUPS}"

distribute-ios:
runs-on: macos-latest
runs-on: macos-14
timeout-minutes: 120

steps:
Expand All @@ -79,6 +79,11 @@ jobs:
with:
node-version: '20.11.1'

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Setup firebase
run: |
curl -sL https://firebase.tools | bash
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
track: alpha

build-ios-prod:
runs-on: macos-latest
runs-on: macos-14
timeout-minutes: 120
continue-on-error: true

Expand All @@ -178,6 +178,11 @@ jobs:
with:
node-version: '20.11.1'

- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.11'

- name: Get release version
id: version_check
run: echo "version=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -245,7 +250,7 @@ jobs:
path: build/ios-build-number.txt

deploy-app-store:
runs-on: macos-latest
runs-on: macos-14
needs: build-ios-prod
timeout-minutes: 120
continue-on-error: true
Expand Down
Loading