Skip to content

Commit

Permalink
Merge pull request #3239 from numbersprotocol/fix-ios-sdk-issue
Browse files Browse the repository at this point in the history
fix(.github/workflows): iOS SDK version issue
  • Loading branch information
olgahaha authored Apr 3, 2024
2 parents f8af147 + 45244e5 commit ff70091
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
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

0 comments on commit ff70091

Please sign in to comment.