2
0
Fork 0
mirror of https://code.forgejo.org/docker/metadata-action.git synced 2025-08-26 16:00:54 +00:00

Inject DOCKER_META_IMAGES and DOCKER_META_VERSION args in bake definition (#37)

Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2020-12-24 16:45:28 +01:00 committed by GitHub
parent b500d9c7b5
commit db66d4df79
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 44 additions and 4 deletions

View file

@ -164,7 +164,11 @@ export class Meta {
target: {
'ghaction-docker-meta': {
tags: this.tags(),
labels: jsonLabels
labels: jsonLabels,
args: {
DOCKER_META_IMAGES: this.inputs.images.join(','),
DOCKER_META_VERSION: this.version.main
}
}
}
},