-
Notifications
You must be signed in to change notification settings - Fork 19
49 lines (43 loc) · 1.33 KB
/
release-azure-prod.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Release to Azure PROD and GitHub Release
on:
push:
tags:
- 'v*'
jobs:
call_make_function_apps_matrix:
uses: ./.github/workflows/make-function-apps-matrix.yaml
secrets: inherit
call_build_test_upload:
uses: ./.github/workflows/build-test-upload.yaml
needs:
- call_make_function_apps_matrix
secrets: inherit
with:
matrix_json: ${{ needs.call_make_function_apps_matrix.outputs.matrix_json }}
call_deployment_azure_prod:
uses: ./.github/workflows/deployment-azure.yaml
needs:
- call_make_function_apps_matrix
- call_build_test_upload
secrets: inherit
with:
gh_environment: PROD
matrix_json: ${{ needs.call_make_function_apps_matrix.outputs.matrix_json }}
call_deployment_github:
uses: ./.github/workflows/deployment-github.yaml
needs:
- call_make_function_apps_matrix
- call_build_test_upload
secrets: inherit
with:
gh_tag: ${{ github.ref }}
matrix_json: ${{ needs.call_make_function_apps_matrix.outputs.matrix_json }}
call_deployment_dockerhub:
uses: ./.github/workflows/deployment-dockerhub.yaml
needs:
- call_make_function_apps_matrix
- call_build_test_upload
secrets: inherit
with:
gh_tag: ${{ github.ref }}
matrix_json: ${{ needs.call_make_function_apps_matrix.outputs.matrix_json }}