We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ca5186 commit 3c660bcCopy full SHA for 3c660bc
1 file changed
.github/workflows/cicd-4c-preprod-deploy.yml
@@ -0,0 +1,32 @@
1
+name: Preprod Deploy 1
2
+
3
+concurrency:
4
+ group: terraform-deploy-preprod
5
+ cancel-in-progress: false
6
7
+on:
8
+ workflow_dispatch:
9
+ inputs:
10
+ ref:
11
+ description: "Branch/Tag/SHA to deploy to preprod (dev tag)"
12
+ required: true
13
+ default: "main"
14
+ release_type:
15
+ description: "Version bump type (use 'rc' to keep the same base and just increment RC)"
16
17
+ default: "rc"
18
+ type: choice
19
+ options:
20
+ - rc
21
+ - patch
22
+ - minor
23
+ - major
24
25
+jobs:
26
+ call:
27
+ uses: ./.github/workflows/base-deploy.yml
28
+ with:
29
+ environment: preprod
30
+ ref: ${{ inputs.ref }}
31
+ release_type: ${{ inputs.release_type }}
32
+ secrets: inherit
0 commit comments