Create deploy-tenant.yaml #2
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: Multi-Tenant Deploy with Approvals | |
on: | |
push: | |
branches: | |
- feature/TUK-128 # trigger on main branch push | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
env: [ytswealth, freshco] | |
environment: | |
name: ${{ matrix.env }} | |
# url: https://example.com/${{ matrix.env }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Show deploy info | |
run: echo "Preparing deployment to ${{ matrix.env }}" |