Fix format

This commit is contained in:
CrazyMax 2020-10-26 01:37:12 +01:00
parent 87e3efc97b
commit d635f7362d
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7

View File

@ -6,8 +6,8 @@ import {Context} from '@actions/github/lib/context';
import {ReposGetResponseData} from '@octokit/types';
export interface Version {
version: string | undefined,
latest: boolean
version: string | undefined;
latest: boolean;
}
export class Meta {
@ -38,7 +38,7 @@ export class Meta {
date: function (format) {
return moment(currentDate).utc().format(format);
}
})
});
} else if (/^refs\/tags\//.test(this.context.ref)) {
const tag = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
const sver = semver.clean(tag);