mirror of
https://github.com/docker/metadata-action.git
synced 2025-04-05 09:30:23 +02:00
Fix format
This commit is contained in:
parent
87e3efc97b
commit
d635f7362d
@ -6,8 +6,8 @@ import {Context} from '@actions/github/lib/context';
|
|||||||
import {ReposGetResponseData} from '@octokit/types';
|
import {ReposGetResponseData} from '@octokit/types';
|
||||||
|
|
||||||
export interface Version {
|
export interface Version {
|
||||||
version: string | undefined,
|
version: string | undefined;
|
||||||
latest: boolean
|
latest: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Meta {
|
export class Meta {
|
||||||
@ -38,7 +38,7 @@ export class Meta {
|
|||||||
date: function (format) {
|
date: function (format) {
|
||||||
return moment(currentDate).utc().format(format);
|
return moment(currentDate).utc().format(format);
|
||||||
}
|
}
|
||||||
})
|
});
|
||||||
} else if (/^refs\/tags\//.test(this.context.ref)) {
|
} else if (/^refs\/tags\//.test(this.context.ref)) {
|
||||||
const tag = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
const tag = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
||||||
const sver = semver.clean(tag);
|
const sver = semver.clean(tag);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user