-
Notifications
You must be signed in to change notification settings - Fork 37
34 lines (29 loc) · 1.11 KB
/
deploy-infrastructure.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Deploy All Infrastructure
env:
DB_ADMIN_PASSWORD: ${{ secrets.DB_ADMIN_PASSWORD }}
on: [workflow_dispatch]
jobs:
job1:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup .NET Core 3.1.101
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Login to Azure
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_CREDENTIALS }}
- name: Run Deployment Scripts
run: |
chmod +x deployment_scripts/set_environment.sh
chmod +x deployment_scripts/deploy_infrastructure.sh
chmod +x deployment_scripts/deploy_sirmione_web.sh
chmod +x deployment_scripts/deploy_scorpio_api.sh
chmod +x deployment_scripts/deploy_limone_api.sh
chmod +x deployment_scripts/deploy_virgo.sh
chmod +x deployment_scripts/deploy_libra.sh
chmod +x deployment_scripts/deploy_zodiac.sh
deployment_scripts/deploy_infrastructure.sh