generated from pagopa/pagopa-functions-template
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (42 loc) · 1.2 KB
/
release_functions_infra.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
name: Deploy functions infra
on:
push:
branches:
- main
- releases/*
paths:
- './infra/functions/onboarding-functions/**'
workflow_dispatch:
inputs:
env:
type: choice
description: Environment
options:
- dev
- uat
- prod
jobs:
release_dev:
uses: ./.github/workflows/call_release_infra.yml
name: '[Dev] Functions Infra Release'
if: ${{ (startsWith(github.ref_name, 'releases/') != true && inputs.env == null) || inputs.env == 'dev' }}
secrets: inherit
with:
environment: dev
dir: ./infra/functions/onboarding-functions
release_uat:
uses: ./.github/workflows/call_release_infra.yml
name: '[UAT] Functions Infra Release'
if: ${{ (startsWith(github.ref_name, 'releases/') == true && inputs.env == null) || inputs.env == 'uat' }}
secrets: inherit
with:
environment: uat
dir: ./infra/functions/onboarding-functions
release_prod:
uses: ./.github/workflows/call_release_infra.yml
name: '[Prod] Functions Infra Release'
if: ${{ inputs.env == 'prod' }}
secrets: inherit
with:
environment: prod
dir: ./infra/functions/onboarding-functions