We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 738f3fa commit 1b2a191Copy full SHA for 1b2a191
1 file changed
.github/workflows/deploy-app.yaml
@@ -7,6 +7,10 @@ on:
7
description: Application to deploy.
8
required: true
9
type: string
10
+ distinct_id:
11
+ description: Distinct ID for this execution, used for tracking.
12
+ required: false
13
+ type: string
14
environment:
15
description: Environment to deploy to.
16
default: development
@@ -26,6 +30,10 @@ jobs:
26
30
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
27
31
AWS_REGION: ${{ vars.AWS_REGION || 'us-east-1' }}
28
32
steps:
33
+ - name: distinct ID ${{ inputs.distinct_id || github.run_id }}
34
+ uses: imesense/gha-echo-action@v0.2
35
+ with:
36
+ input-string: ${{ inputs.distinct_id || github.run_id }}
29
37
- name: Checkout code
38
uses: actions/checkout@v4
39
- name: Set up AWS credentials
0 commit comments