Skip to content

Commit 3c660bc

Browse files
grouping
1 parent 5ca5186 commit 3c660bc

1 file changed

Lines changed: 32 additions & 0 deletions

File tree

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
required: true
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

Comments
 (0)