mirror of
https://github.com/docker/metadata-action.git
synced 2025-04-03 17:10:23 +02:00
Added support for semverPrefix
This commit is contained in:
parent
2480e1e23e
commit
394db5824b
@ -82,10 +82,10 @@ export class Meta {
|
||||
const minor: number = semver.minor(semver.coerce(version.version));
|
||||
const patch: number = semver.patch(semver.coerce(version.version));
|
||||
const prerelease: string[] | null = semver.patch(version.version);
|
||||
tags.push(`${image}:${major}`);
|
||||
tags.push(`${image}:${major}.${minor}`);
|
||||
tags.push(`${image}:${this.inputs.semverPrefix}${major}`);
|
||||
tags.push(`${image}:${this.inputs.semverPrefix}${major}.${minor}`);
|
||||
if(prerelease !== null) {
|
||||
tags.push(`${image}:${major}.${minor}.${patch}`);
|
||||
tags.push(`${image}:${this.inputs.semverPrefix}${major}.${minor}.${patch}`);
|
||||
}
|
||||
}
|
||||
if (version.latest) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user