Continuous deployment of MAV-921_continuous_deployment_job to QA and Test #15
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
Check failure on line 13 in .github/workflows/continuous-deployment.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 }} |