From 7df590fa0d6caa2d1c605db6b60a117c07afff5a Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Sun, 25 Oct 2020 15:11:45 +0100 Subject: [PATCH] Fix locale --- __tests__/meta.test.ts | 6 +++--- dist/index.js | 2 +- src/meta.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/__tests__/meta.test.ts b/__tests__/meta.test.ts index 45e7155..a8ccf27 100644 --- a/__tests__/meta.test.ts +++ b/__tests__/meta.test.ts @@ -203,16 +203,16 @@ describe('tags and labels', () => { images: ['user/app'], tagSchedule: `{{date 'YYYYMMDD-HHmmss'}}` } as Inputs, - '20200110-013000', + '20200110-003000', [ - 'user/app:20200110-013000' + 'user/app:20200110-003000' ], [ "org.opencontainers.image.title=Hello-World", "org.opencontainers.image.description=This your first repo!", "org.opencontainers.image.url=https://github.com/octocat/Hello-World", "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.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071", "org.opencontainers.image.licenses=MIT" diff --git a/dist/index.js b/dist/index.js index faccdf5..3926453 100644 --- a/dist/index.js +++ b/dist/index.js @@ -259,7 +259,7 @@ class Meta { const currentDate = this.date; return { date: function (format) { - return moment(currentDate).format(format); + return moment(currentDate).utc().format(format); } }; } diff --git a/src/meta.ts b/src/meta.ts index 199c5c5..966aeb1 100644 --- a/src/meta.ts +++ b/src/meta.ts @@ -103,7 +103,7 @@ export class Meta { const currentDate = this.date; return { date: function (format) { - return moment(currentDate).format(format); + return moment(currentDate).utc().format(format); } }; }