We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67e8e8a commit 0ce5204Copy full SHA for 0ce5204
1 file changed
.github/workflows/deploy-dev.yml
@@ -7,6 +7,15 @@ on:
7
8
# Allows you to run this workflow manually from the Actions tab
9
workflow_dispatch:
10
+ inputs:
11
+ tag:
12
+ description: Tag to use for the image
13
+ default: 'nightly'
14
+ type: choice
15
+ options:
16
+ - nightly
17
+ - latest
18
+
19
20
permissions:
21
id-token: write # This is required for requesting the JWT for OIDC
@@ -24,7 +33,7 @@ jobs:
24
33
- name: Build images
25
34
uses: ./.github/actions/build-images
26
35
with:
27
- tag: nightly
36
+ tag: ${{ inputs.tag || 'nightly' }}
28
37
aws-ecr-uri: ${{ vars.PRIVATE_ECR }}
29
38
aws-role-arn: ${{ vars.AWS_ROLE_ARN }}
30
39
aws-region: ${{ vars.AWS_REGION }}
0 commit comments