fix(): update INTUNE_ENABLED within Github CI & Podfile (#9453)

* fix(): update INTUNE_ENABLED within Github CI & Podfile
* temporary switch to iOS 15 and false INTUNE_ENABLED
* revert INTUNE_ENABLED='false' and iOS 15
This commit is contained in:
Rahim Rahman 2026-01-21 16:50:35 -07:00 committed by GitHub
parent cbf300ffd3
commit 6fb109faf1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 18 additions and 18 deletions

View file

@ -52,7 +52,7 @@ runs:
- name: ci/install-pods-dependencies
shell: bash
env:
INTUNE_ENABLED: ${{ inputs.intune-enabled == 'true' && '1' || '0' }}
INTUNE_ENABLED: ${{ inputs.intune-enabled }}
run: |
echo "::group::install-pods-dependencies"
echo "INTUNE_ENABLED=$INTUNE_ENABLED"

View file

@ -11,7 +11,7 @@ on:
env:
NODE_VERSION: 22.14.0
TERM: xterm
INTUNE_ENABLED: 1
INTUNE_ENABLED: 'true'
jobs:
test:
@ -34,7 +34,7 @@ jobs:
- name: ci/prepare-ios-build
uses: ./.github/actions/prepare-ios-build
with:
intune-enabled: 'true'
intune-enabled: ${{ env.INTUNE_ENABLED }}
intune-ssh-private-key: ${{ secrets.MM_MOBILE_INTUNE_DEPLOY_KEY }}
- name: ci/build-ios-simulator
@ -70,7 +70,7 @@ jobs:
- name: ci/prepare-ios-build
uses: ./.github/actions/prepare-ios-build
with:
intune-enabled: 'true'
intune-enabled: ${{ env.INTUNE_ENABLED }}
intune-ssh-private-key: ${{ secrets.MM_MOBILE_INTUNE_DEPLOY_KEY }}
- name: ci/build-and-deploy-ios-beta

View file

@ -11,7 +11,7 @@ on:
env:
NODE_VERSION: 22.14.0
TERM: xterm
INTUNE_ENABLED: 1
INTUNE_ENABLED: 'true'
jobs:
test:
@ -39,7 +39,7 @@ jobs:
- name: ci/prepare-ios-build
uses: ./.github/actions/prepare-ios-build
with:
intune-enabled: 'true'
intune-enabled: ${{ env.INTUNE_ENABLED }}
intune-ssh-private-key: ${{ secrets.MM_MOBILE_INTUNE_DEPLOY_KEY }}
- name: ci/build-and-deploy-ios-release
@ -82,7 +82,7 @@ jobs:
- name: ci/prepare-ios-build
uses: ./.github/actions/prepare-ios-build
with:
intune-enabled: 'true'
intune-enabled: ${{ env.INTUNE_ENABLED }}
intune-ssh-private-key: ${{ secrets.MM_MOBILE_INTUNE_DEPLOY_KEY }}
- name: ci/build-ios-simulator

View file

@ -8,7 +8,7 @@ on:
env:
NODE_VERSION: 22.14.0
TERM: xterm
INTUNE_ENABLED: 1
INTUNE_ENABLED: 'true'
jobs:
test:
@ -41,7 +41,7 @@ jobs:
- name: ci/prepare-ios-build
uses: ./.github/actions/prepare-ios-build
with:
intune-enabled: 'true'
intune-enabled: ${{ env.INTUNE_ENABLED }}
intune-ssh-private-key: ${{ secrets.MM_MOBILE_INTUNE_DEPLOY_KEY }}
- name: ci/build-ios-pr

View file

@ -15,7 +15,7 @@ concurrency:
cancel-in-progress: true
env:
INTUNE_ENABLED: 1
INTUNE_ENABLED: 'true'
jobs:
update-initial-status-ios:
@ -59,7 +59,7 @@ jobs:
- name: Prepare iOS Build
uses: ./.github/actions/prepare-ios-build
with:
intune-enabled: 'true'
intune-enabled: ${{ env.INTUNE_ENABLED }}
intune-ssh-private-key: ${{ secrets.MM_MOBILE_INTUNE_DEPLOY_KEY }}
- name: Build iOS Simulator

View file

@ -6,7 +6,7 @@ on:
- release-*
env:
INTUNE_ENABLED: 1
INTUNE_ENABLED: 'true'
jobs:
update-initial-status-ios:
@ -46,7 +46,7 @@ jobs:
- name: Prepare iOS Build
uses: ./.github/actions/prepare-ios-build
with:
intune-enabled: 'true'
intune-enabled: ${{ env.INTUNE_ENABLED }}
intune-ssh-private-key: ${{ secrets.MM_MOBILE_INTUNE_DEPLOY_KEY }}
- name: Build iOS Simulator

View file

@ -5,7 +5,7 @@ on:
- cron: "0 0 * * 4,5" # Wednesday and Thursday midnight
env:
INTUNE_ENABLED: 1
INTUNE_ENABLED: 'true'
jobs:
update-initial-status-ios:
@ -45,7 +45,7 @@ jobs:
- name: Prepare iOS Build
uses: ./.github/actions/prepare-ios-build
with:
intune-enabled: 'true'
intune-enabled: ${{ env.INTUNE_ENABLED }}
intune-ssh-private-key: ${{ secrets.MM_MOBILE_INTUNE_DEPLOY_KEY }}
- name: Build iOS Simulator

View file

@ -15,7 +15,7 @@ env:
RELEASE_TAG: ${{ inputs.tag || github.ref_name }}
SNYK_VERSION: "1.1297.2"
CYCLONEDX_VERSION: "v0.27.2"
INTUNE_ENABLED: 1
INTUNE_ENABLED: 'true'
jobs:
test:
@ -42,7 +42,7 @@ jobs:
- name: ci/prepare-ios-build
uses: ./.github/actions/prepare-ios-build
with:
intune-enabled: 'true'
intune-enabled: ${{ env.INTUNE_ENABLED }}
intune-ssh-private-key: ${{ secrets.MM_MOBILE_INTUNE_DEPLOY_KEY }}
- name: ci/build-ios-unsigned

View file

@ -26,7 +26,7 @@ setup_permissions([
])
# Conditional Intune MAM support
intune_enabled = ENV['INTUNE_ENABLED'] == '1'
intune_enabled = ENV['INTUNE_ENABLED'] == 'true' || ENV['INTUNE_ENABLED'] == '1'
if intune_enabled
puts "🔐 Intune MAM features enabled"