Skip to content

Update Exercise “e4bf8d17-a774-4702-abfe-c7452c3fee0f” (#5894) #4485

Update Exercise “e4bf8d17-a774-4702-abfe-c7452c3fee0f” (#5894)

Update Exercise “e4bf8d17-a774-4702-abfe-c7452c3fee0f” (#5894) #4485

Workflow file for this run

name: Main
on:
push:
branches:
- main
jobs:
test:
name: Test
uses: ./.github/workflows/test.yml
secrets: inherit
deploy-web-production:
name: Web Production
concurrency: deploy-web-production
needs: test
uses: ./.github/workflows/deploy-web.yml
with:
environment: production
secrets: inherit
deploy-cms-production:
name: CMS Production
concurrency: deploy-cms-production
needs: test
uses: ./.github/workflows/deploy-cms.yml
with:
environment: production
secrets: inherit
deploy-functions-production:
name: Functions Production
concurrency: deploy-functions-production
needs: test
uses: ./.github/workflows/deploy-functions.yml
with:
environment: production
secrets: inherit
deploy-functions-staging:
name: Functions Staging
concurrency: deploy-functions-staging
needs: test
uses: ./.github/workflows/deploy-functions.yml
with:
environment: staging
secrets: inherit
deploy-ios-production:
name: iOS Production
concurrency: deploy-ios-production
needs: deploy-functions-production
uses: ./.github/workflows/deploy-codepush.yml
with:
environment: production
platform: ios
secrets: inherit
deploy-ios-staging:
name: iOS Staging
concurrency: deploy-ios-staging
needs: deploy-functions-staging
uses: ./.github/workflows/deploy-codepush.yml
with:
environment: staging
platform: ios
secrets: inherit
deploy-android-production:
name: Android Production
concurrency: deploy-android-production
needs: deploy-functions-production
uses: ./.github/workflows/deploy-codepush.yml
with:
environment: production
platform: android
secrets: inherit
deploy-android-staging:
name: Android Staging
concurrency: deploy-android-staging
needs: deploy-functions-staging
uses: ./.github/workflows/deploy-codepush.yml
with:
environment: staging
platform: android
secrets: inherit