-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (60 loc) · 1.54 KB
/
manual_deploy.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
name: Manual Deployment
on:
workflow_dispatch:
inputs:
env:
required: true
default: "dev"
type: choice
description: Environment to deploy to
options:
- dev
- impl
- prod
skip_tests:
required: true
default: false
type: boolean
description: Skip tests
confirm_production_deploy:
required: true
default: false
type: boolean
description: Confirm that you want to deploy to production
permissions:
id-token: write
contents: read
jobs:
Build_Application_Images:
uses: ./.github/workflows/build_application_images.yml
secrets: inherit
Run_Tests:
uses: ./.github/workflows/run_tests.yml
needs: Build_Application_Images
secrets: inherit
with:
skip_tests: ${{ github.event.inputs.skip_tests }}
deploy_dev:
needs: Run_Tests
if: ${{ github.event.inputs.env == 'dev' }}
uses: ./.github/workflows/deploy_to_environment.yml
with:
env: dev
lambda_version: 10
secrets: inherit
deploy_impl:
needs: Run_Tests
if: ${{ github.event.inputs.env == 'impl' }}
uses: ./.github/workflows/deploy_to_environment.yml
with:
env: impl
lambda_version: 9
secrets: inherit
deploy_prod:
needs: Run_Tests
if: ${{ github.event.inputs.env == 'prod' && github.event.inputs.confirm_production_deploy == true }}
uses: ./.github/workflows/deploy_to_environment.yml
with:
env: prod
lambda_version: 8
secrets: inherit