File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 11name : ' update-kustomization'
22description : ' Update Kustomization'
3+
4+ inputs :
5+ ssh_key :
6+ required : true
7+ description : base64 encoded ssh key
8+ images :
9+ required : true
10+ description : updated images (comma-separated list)
11+ image_tag :
12+ required : true
13+ description : image tag generated in current build
14+ default : latest
15+ kustomization :
16+ required : true
17+ description : kustomization path relative to the project root
18+ manifest_host :
19+ required : true
20+ manifest_user :
21+ required : true
22+ manifest_user_email :
23+ required : true
24+ manifest_repo :
25+ required : true
26+ manifest_branch :
27+ required : true
28+
29+
330runs :
431 using : ' docker'
532 image : ' Dockerfile'
33+ env :
34+ SSH_KEY : ${{ inputs.ssh_key }}
35+ IMAGES : ${{ inputs.images }}
36+ IMAGE_TAG : ${{ inputs.image_tag }}
37+ KUSTOMIZATION : ${{ inputs.kustomization }}
38+ MANIFEST_HOST : ${{ inputs.manifest_host }}
39+ MANIFEST_USER : ${{ inputs.manifest_user }}
40+ MANIFEST_USER_EMAIL : ${{ inputs.manifest_user_email }}
41+ MANIFEST_REPO : ${{ inputs.manifest_repo }}
42+ MANIFEST_BRANCH : ${{ inputs.manifest_branch }}
You can’t perform that action at this time.
0 commit comments