2
0
Fork 0
mirror of https://code.forgejo.org/docker/metadata-action.git synced 2025-08-30 01:40:55 +00:00

Generate latest tag by default on push tag event (#5)

Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2020-10-28 18:25:31 +01:00 committed by GitHub
parent 5ecce77816
commit 6cc07472c0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 25 additions and 13 deletions

View file

@ -52,6 +52,8 @@ export class Meta {
version.version = tagMatch[this.inputs.tagMatchGroup];
version.latest = this.inputs.tagMatchLatest;
}
} else {
version.latest = true;
}
} else if (/^refs\/heads\//.test(this.context.ref)) {
version.version = this.context.ref.replace(/^refs\/heads\//g, '').replace(/\//g, '-');