Skip to content

AT environments: f276b8d70355940ccf8b418d5329503df7affd15 #282

AT environments: f276b8d70355940ccf8b418d5329503df7affd15

AT environments: f276b8d70355940ccf8b418d5329503df7affd15 #282

Workflow file for this run

name: 'Deploy: AT'
run-name: 'AT environments: ${{ github.sha }}'
on:
push:
branches: ['main']
jobs:
containerize:
name: 'Containerize'
uses: './.github/workflows/template-build-and-push-container.yml'
with:
tag: ${{ github.sha }}
deploy-main:
name: 'Environment'
needs: containerize
strategy:
fail-fast: false
matrix:
environment: [AT21, AT22, AT23, AT24]
uses: './.github/workflows/template-deploy-container.yml'
secrets: inherit
with:
environment: ${{ matrix.environment }}
tag: ${{ github.sha }}
playwright-main:
name: 'Playwright'
secrets: inherit
uses: './.github/workflows/template-playwright.yml'
needs: deploy-main
strategy:
fail-fast: false
matrix:
environment: [AT24]
with:
environment: ${{ matrix.environment }}