mirror of
https://github.com/docker/metadata-action.git
synced 2025-04-05 09:30:23 +02:00
Fix locale
This commit is contained in:
parent
82e48e1f2e
commit
7df590fa0d
@ -203,16 +203,16 @@ describe('tags and labels', () => {
|
|||||||
images: ['user/app'],
|
images: ['user/app'],
|
||||||
tagSchedule: `{{date 'YYYYMMDD-HHmmss'}}`
|
tagSchedule: `{{date 'YYYYMMDD-HHmmss'}}`
|
||||||
} as Inputs,
|
} as Inputs,
|
||||||
'20200110-013000',
|
'20200110-003000',
|
||||||
[
|
[
|
||||||
'user/app:20200110-013000'
|
'user/app:20200110-003000'
|
||||||
],
|
],
|
||||||
[
|
[
|
||||||
"org.opencontainers.image.title=Hello-World",
|
"org.opencontainers.image.title=Hello-World",
|
||||||
"org.opencontainers.image.description=This your first repo!",
|
"org.opencontainers.image.description=This your first repo!",
|
||||||
"org.opencontainers.image.url=https://github.com/octocat/Hello-World",
|
"org.opencontainers.image.url=https://github.com/octocat/Hello-World",
|
||||||
"org.opencontainers.image.source=https://github.com/octocat/Hello-World.git",
|
"org.opencontainers.image.source=https://github.com/octocat/Hello-World.git",
|
||||||
"org.opencontainers.image.version=20200110-013000",
|
"org.opencontainers.image.version=20200110-003000",
|
||||||
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
||||||
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
||||||
"org.opencontainers.image.licenses=MIT"
|
"org.opencontainers.image.licenses=MIT"
|
||||||
|
2
dist/index.js
generated
vendored
2
dist/index.js
generated
vendored
@ -259,7 +259,7 @@ class Meta {
|
|||||||
const currentDate = this.date;
|
const currentDate = this.date;
|
||||||
return {
|
return {
|
||||||
date: function (format) {
|
date: function (format) {
|
||||||
return moment(currentDate).format(format);
|
return moment(currentDate).utc().format(format);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -103,7 +103,7 @@ export class Meta {
|
|||||||
const currentDate = this.date;
|
const currentDate = this.date;
|
||||||
return {
|
return {
|
||||||
date: function (format) {
|
date: function (format) {
|
||||||
return moment(currentDate).format(format);
|
return moment(currentDate).utc().format(format);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user