Skip to content

Continuous deployment of MAV-921_continuous_deployment_job to QA and Test #24

Continuous deployment of MAV-921_continuous_deployment_job to QA and Test

Continuous deployment of MAV-921_continuous_deployment_job to QA and Test #24

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