Skip to content

v.2026.45

v.2026.45 #130

Workflow file for this run

name: 'Deploy: Release'
run-name: ${{ github.ref_name }}
on:
release:
types: [published]
jobs:
containerize:
name: 'Containerize'
uses: './.github/workflows/template-build-and-push-container.yml'
with:
tag: ${{ github.ref_name }}
deploy-release-to-tt02:
name: 'Environment (TT02)'
needs: containerize
uses: './.github/workflows/template-deploy-container.yml'
secrets: inherit
with:
environment: TT02
tag: ${{ github.ref_name }}
playwright-release-to-tt02:
name: 'Playwright'
needs: deploy-release-to-tt02
uses: './.github/workflows/template-playwright.yml'
secrets: inherit
strategy:
matrix:
environment: [TT02]
project: [e2e-tests]
with:
environment: ${{ matrix.environment }}
project: ${{ matrix.project }}
deploys-release-to-prod:
name: 'Environment (Prod)'
needs: deploy-release-to-tt02
uses: './.github/workflows/template-deploy-container.yml'
secrets: inherit
with:
environment: PROD
tag: ${{ github.ref_name }}