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:
parent
cbf300ffd3
commit
6fb109faf1
9 changed files with 18 additions and 18 deletions
|
|
@ -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"
|
||||
|
|
|
|||
6
.github/workflows/build-ios-beta.yml
vendored
6
.github/workflows/build-ios-beta.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
6
.github/workflows/build-ios-release.yml
vendored
6
.github/workflows/build-ios-release.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/build-pr.yml
vendored
4
.github/workflows/build-pr.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/e2e-detox-pr.yml
vendored
4
.github/workflows/e2e-detox-pr.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/e2e-detox-release.yml
vendored
4
.github/workflows/e2e-detox-release.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/e2e-detox-scheduled.yml
vendored
4
.github/workflows/e2e-detox-scheduled.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
4
.github/workflows/github-release.yml
vendored
4
.github/workflows/github-release.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue