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
4 changed files with 25 additions and 13 deletions

3
dist/index.js generated vendored
View File

@ -208,6 +208,9 @@ class Meta {
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, '-');