Fixed format

This commit is contained in:
fastlorenzo 2020-11-04 20:29:05 +01:00
parent 394db5824b
commit 6db5fd5557
No known key found for this signature in database
GPG Key ID: 8AAAB58530EC2A31
2 changed files with 2162 additions and 4 deletions

2160
dist/index.js generated vendored

File diff suppressed because it is too large Load Diff

View File

@ -77,16 +77,16 @@ export class Meta {
let tags: Array<string> = [];
for (const image of this.inputs.images) {
tags.push(`${image}:${version.version}`);
if(this.inputs.fullSemver && semver.valid(version.version)) {
if (this.inputs.fullSemver && semver.valid(version.version)) {
const major: number = semver.major(semver.coerce(version.version));
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}:${this.inputs.semverPrefix}${major}`);
tags.push(`${image}:${this.inputs.semverPrefix}${major}.${minor}`);
if(prerelease !== null) {
if (prerelease !== null) {
tags.push(`${image}:${this.inputs.semverPrefix}${major}.${minor}.${patch}`);
}
}
}
if (version.latest) {
tags.push(`${image}:latest`);