Skip to content

Commit 867baf0

Browse files
Create Multi-tenant-approval.yaml
adding new yaml for github action Multi-tenant-approval
1 parent 8ac35dd commit 867baf0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Multi-Tenant Deploy with Approvals
2+
3+
on:
4+
push:
5+
branches:
6+
- feature/TUK-128 # trigger on main branch push
7+
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
strategy:
12+
matrix:
13+
env: [ytswealth, freshco]
14+
15+
environment:
16+
name: ${{ matrix.env }}
17+
# url: https://example.com/${{ matrix.env }}
18+
19+
steps:
20+
- name: Checkout repo
21+
uses: actions/checkout@v4
22+
23+
- name: Show deploy info
24+
run: echo "Preparing deployment to ${{ matrix.env }}"

0 commit comments

Comments
 (0)