We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b47166b commit 6481d42Copy full SHA for 6481d42
1 file changed
.github/workflows/emailer-cd-gcp.yml
@@ -17,7 +17,13 @@ on:
17
- test
18
- sandbox
19
- prod
20
-
+ redeploy:
21
+ description: "Redeploy Application"
22
+ required: true
23
+ type: choice
24
+ options:
25
+ - "false"
26
+ - "true"
27
jobs:
28
namex-emailer-cd:
29
permissions:
@@ -29,6 +35,7 @@ jobs:
35
target: ${{ github.event.inputs.target }} # Corrected the input reference
30
36
app_name: "namex-emailer"
31
37
working_directory: "./services/emailer"
38
+ redeploy: ${{ inputs.redeploy }}
32
39
secrets:
33
40
WORKLOAD_IDENTIFY_POOLS_PROVIDER: ${{ secrets.WORKLOAD_IDENTIFY_POOLS_PROVIDER }}
34
41
GCP_SERVICE_ACCOUNT: ${{ secrets.GCP_SERVICE_ACCOUNT }}
0 commit comments