diff --git a/.github/workflows/matrix-deploy.yml b/.github/workflows/matrix-deploy.yml index 7d0acf9..92c66e0 100644 --- a/.github/workflows/matrix-deploy.yml +++ b/.github/workflows/matrix-deploy.yml @@ -36,3 +36,23 @@ jobs: branch: ${{ needs.set-env.outputs.branch }} checked-out-sha: ${{ needs.set-env.outputs.checked-out-sha }} + create-and-tag-release: + needs: [set-env, create-and-publish-image] + name: Create & Tag Release + uses: ./.github/workflows/create-tag-release.yml + secrets: inherit + + deploy-to-dev-and-test: + needs: [set-env, create-and-publish-image] + name: Deploy to Dev + strategy: + max-parallel: 1 + fail-fast: true + matrix: + target: [Dev] + uses: ./.github/workflows/deploy-image.yml + with: + environment: ${{ matrix.target }} + branch: ${{ needs.set-env.outputs.branch }} + checked-out-sha: ${{ needs.set-env.outputs.checked-out-sha }} + secrets: inherit