-
Notifications
You must be signed in to change notification settings - Fork 1
90 lines (84 loc) · 2.69 KB
/
main.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: Whack-A-Mole Intagration
on:
push:
branches: [main]
permissions:
id-token: write
contents: read
jobs:
versionize:
runs-on: ubuntu-latest
outputs:
semver: ${{ steps.gitversion.outputs.SemVer }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: "5.x"
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/[email protected]
with:
useConfigFile: true
publish-bicep:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build & Push
working-directory: infrastructure
run: |
bicep build-params prod.main.bicepparam
bicep build-params test.main.bicepparam
az bicep build --file main.bicep
- name: Publish Artifact
uses: actions/upload-artifact@v4
with:
name: bicep-templates
path: infrastructure/*.json
test-deployment:
needs: [publish-bicep, versionize]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: bicep-templates
path: ./infrastructure
- name: Az CLI login
uses: azure/login@v1
with:
client-id: ${{ secrets.WAM_TST_CLIENT_ID }}
tenant-id: ${{ secrets.WAM_TST_TENANT_ID }}
subscription-id: ${{ secrets.WAM_TST_SUBSCRIPTION_ID }}
- name: Deploy Infrastructure
id: arm
uses: Azure/cli@v1
with:
inlineScript: az deployment sub create --name wam-integration-northeur --location northeurope --template-file ./infrastructure/main.json --parameters ./infrastructure/test.main.json
production-deployment:
if: github.ref == 'refs/heads/main'
needs: [test-deployment]
runs-on: ubuntu-latest
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
with:
name: bicep-templates
path: ./infrastructure
- name: Az CLI login
uses: azure/login@v1
with:
client-id: ${{ secrets.WAM_PRD_CLIENT_ID }}
tenant-id: ${{ secrets.WAM_PRD_TENANT_ID }}
subscription-id: ${{ secrets.WAM_PRD_SUBSCRIPTION_ID }}
- name: Deploy Infrastructure
id: arm
uses: Azure/cli@v1
with:
inlineScript: az deployment sub create --name wam-integration-northeur --location northeurope --template-file ./infrastructure/main.json --parameters ./infrastructure/prod.main.json