File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed
Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 5151 registry_password :
5252 description : " Registry password"
5353 required : true
54+ outputs :
55+ tag :
56+ description : " The tag of the image pushed to the registry"
57+ value : ${{ jobs.prepare.outputs.tag }}
58+ digest :
59+ description : " The digest of the image pushed to the registry"
60+ value : ${{ jobs.manifest.outputs.digest }}
5461
5562jobs :
5663 prepare :
@@ -165,6 +172,8 @@ jobs:
165172 manifest :
166173 needs : [ prepare, build ]
167174 runs-on : ubuntu-latest
175+ outputs :
176+ digest : ${{ steps.push.outputs.digest }}
168177 env :
169178 tag : ${{ needs.prepare.outputs.tag }}
170179 steps :
@@ -193,4 +202,4 @@ jobs:
193202 tags : ${{ env.tag }}
194203 username : ${{ secrets.registry_username }}
195204 password : ${{ secrets.registry_password }}
196- registry : ${{ inputs.registry }}
205+ registry : ${{ inputs.registry }}
You can’t perform that action at this time.
0 commit comments