Skip to content

Update Exercise “c1c4da35-87af-4e10-a8d9-e6c58571f724” (#5898) #4488

Update Exercise “c1c4da35-87af-4e10-a8d9-e6c58571f724” (#5898)

Update Exercise “c1c4da35-87af-4e10-a8d9-e6c58571f724” (#5898) #4488

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