Skip to content

Continuous deployment of main to QA and Test #40

Continuous deployment of main to QA and Test

Continuous deployment of main to QA and Test #40

name: Continuous deployment
run-name: Continuous deployment of ${{ github.ref_name }} to QA and Test
on:
push:
branches: [main]
jobs:
test:
uses: ./.github/workflows/test.yml
deploy-mavis:
needs: test
strategy:
fail-fast: false
matrix:
environment: ["qa", "test"]
uses: ./.github/workflows/deploy-mavis.yml
with:
environment: ${{ matrix.environment }}