File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ description: Deploys the selected environment
33branding : { color: blue, icon: box }
44inputs :
55 environment : { description: environment name, required: true }
6+ tag : { description: tag to deploy, required: false }
67 node-version : {
78 description : Node version to test the lambda,
89 required : false,
2425 using : composite
2526 steps :
2627 - name : Checkout the code
27- uses : actions/checkout@v3
28+ uses : actions/checkout@v4
29+ with :
30+ fetch-tags : true
31+ ref : ${{ inputs.tag }}
32+
33+ - name : Tag info
34+ shell : bash
35+ run : |
36+ echo "Current tag: ${{ github.ref }}"
37+ echo "Input tag: ${{ inputs.tag }}"
2838
2939 - name : " Get deploy keys for Abi dependencies"
3040 if : ${{ inputs.ABI_DATABASE_GATEWAY_DEPLOY_KEY != '' || inputs.LIBBY_DEPLOY_KEY != '' || inputs.ABI_AI_GATEWAY_KEY != '' }}
You can’t perform that action at this time.
0 commit comments