mirror of
https://github.com/docker/metadata-action.git
synced 2024-11-08 21:25:40 +01:00
3b38d53d94
Co-authored-by: CrazyMax <crazy-max@users.noreply.github.com>
582 lines
20 KiB
TypeScript
582 lines
20 KiB
TypeScript
import * as fs from 'fs';
|
|
import * as path from 'path';
|
|
import * as dotenv from 'dotenv';
|
|
import * as moment from 'moment';
|
|
import {getInputs, Inputs} from '../src/context';
|
|
import * as github from '../src/github';
|
|
import {Meta} from '../src/meta';
|
|
import {Context} from '@actions/github/lib/context';
|
|
import {ReposGetResponseData} from '@octokit/types';
|
|
|
|
jest.spyOn(github, 'repo').mockImplementation(
|
|
(): Promise<ReposGetResponseData> => {
|
|
return <Promise<ReposGetResponseData>>require(path.join(__dirname, 'fixtures', 'repo.json'));
|
|
}
|
|
);
|
|
|
|
jest.spyOn(github, 'context').mockImplementation(
|
|
(): Context => {
|
|
return new Context();
|
|
}
|
|
);
|
|
|
|
jest.spyOn(global.Date.prototype, 'toISOString').mockImplementation(() => {
|
|
return '2020-01-10T00:30:00.000Z';
|
|
});
|
|
|
|
jest.mock('moment', () => {
|
|
return () => jest.requireActual('moment')('2020-01-10T00:30:00.000Z');
|
|
});
|
|
|
|
describe('tags and labels', () => {
|
|
beforeEach(() => {
|
|
Object.keys(process.env).forEach(function (key) {
|
|
if (key !== 'GITHUB_TOKEN' && key.startsWith('GITHUB_')) {
|
|
delete process.env[key];
|
|
}
|
|
});
|
|
});
|
|
|
|
// prettier-ignore
|
|
test.each([
|
|
[
|
|
'event_null.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
undefined,
|
|
[],
|
|
[
|
|
"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=",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_empty.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
undefined,
|
|
[],
|
|
[
|
|
"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=",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_pull_request.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
'pr-2',
|
|
[
|
|
'user/app:pr-2'
|
|
],
|
|
[
|
|
"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=pr-2",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=1e9249f05bfc090e0688b8fb9c1b347586add504",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_push.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
'dev',
|
|
[
|
|
'user/app:dev'
|
|
],
|
|
[
|
|
"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=dev",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_push_defbranch.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
'edge',
|
|
[
|
|
'user/app:edge'
|
|
],
|
|
[
|
|
"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=edge",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_release.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
'1.1.1',
|
|
[
|
|
'user/app:1.1.1',
|
|
'user/app:latest'
|
|
],
|
|
[
|
|
"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=1.1.1",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_schedule.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
'nightly',
|
|
[
|
|
'user/app:nightly'
|
|
],
|
|
[
|
|
"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=nightly",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_schedule.env',
|
|
{
|
|
images: ['user/app'],
|
|
tagSchedule: `{{date 'YYYYMMDD'}}`
|
|
} as Inputs,
|
|
'20200110',
|
|
[
|
|
'user/app:20200110'
|
|
],
|
|
[
|
|
"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",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_schedule.env',
|
|
{
|
|
images: ['user/app'],
|
|
tagSchedule: `{{date 'YYYYMMDD-HHmmss'}}`
|
|
} as Inputs,
|
|
'20200110-003000',
|
|
[
|
|
'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-003000",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_tag.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
'release1',
|
|
[
|
|
'user/app:release1'
|
|
],
|
|
[
|
|
"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=release1",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_tag_semver.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
'1.1.1',
|
|
[
|
|
'user/app:1.1.1',
|
|
'user/app:latest'
|
|
],
|
|
[
|
|
"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=1.1.1",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_workflow_dispatch.env',
|
|
{
|
|
images: ['user/app'],
|
|
} as Inputs,
|
|
'edge',
|
|
[
|
|
'user/app:edge'
|
|
],
|
|
[
|
|
"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=edge",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_pull_request.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
} as Inputs,
|
|
'pr-2',
|
|
[
|
|
'org/app:pr-2',
|
|
'ghcr.io/user/app:pr-2'
|
|
],
|
|
[
|
|
"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=pr-2",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=1e9249f05bfc090e0688b8fb9c1b347586add504",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_push.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
} as Inputs,
|
|
'dev',
|
|
[
|
|
'org/app:dev',
|
|
'ghcr.io/user/app:dev'
|
|
],
|
|
[
|
|
"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=dev",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_push_defbranch.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
} as Inputs,
|
|
'edge',
|
|
[
|
|
'org/app:edge',
|
|
'ghcr.io/user/app:edge'
|
|
],
|
|
[
|
|
"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=edge",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_schedule.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
} as Inputs,
|
|
'nightly',
|
|
[
|
|
'org/app:nightly',
|
|
'ghcr.io/user/app:nightly'
|
|
],
|
|
[
|
|
"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=nightly",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_tag_semver.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
} as Inputs,
|
|
'1.1.1',
|
|
[
|
|
'org/app:1.1.1',
|
|
'org/app:latest',
|
|
'ghcr.io/user/app:1.1.1',
|
|
'ghcr.io/user/app:latest'
|
|
],
|
|
[
|
|
"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=1.1.1",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_pull_request.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
tagSha: true,
|
|
} as Inputs,
|
|
'pr-2',
|
|
[
|
|
'org/app:pr-2',
|
|
'org/app:sha-1e9249f',
|
|
'ghcr.io/user/app:pr-2',
|
|
'ghcr.io/user/app:sha-1e9249f'
|
|
],
|
|
[
|
|
"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=pr-2",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=1e9249f05bfc090e0688b8fb9c1b347586add504",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_push.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
tagSha: true,
|
|
} as Inputs,
|
|
'dev',
|
|
[
|
|
'org/app:dev',
|
|
'org/app:sha-90dd603',
|
|
'ghcr.io/user/app:dev',
|
|
'ghcr.io/user/app:sha-90dd603'
|
|
],
|
|
[
|
|
"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=dev",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_push_defbranch.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
tagSha: true,
|
|
} as Inputs,
|
|
'edge',
|
|
[
|
|
'org/app:edge',
|
|
'org/app:sha-90dd603',
|
|
'ghcr.io/user/app:edge',
|
|
'ghcr.io/user/app:sha-90dd603'
|
|
],
|
|
[
|
|
"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=edge",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_schedule.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
tagSha: true,
|
|
} as Inputs,
|
|
'nightly',
|
|
[
|
|
'org/app:nightly',
|
|
'org/app:sha-90dd603',
|
|
'ghcr.io/user/app:nightly',
|
|
'ghcr.io/user/app:sha-90dd603'
|
|
],
|
|
[
|
|
"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=nightly",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_tag_semver.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
tagSha: true,
|
|
} as Inputs,
|
|
'1.1.1',
|
|
[
|
|
'org/app:1.1.1',
|
|
'org/app:latest',
|
|
'org/app:sha-90dd603',
|
|
'ghcr.io/user/app:1.1.1',
|
|
'ghcr.io/user/app:latest',
|
|
'ghcr.io/user/app:sha-90dd603'
|
|
],
|
|
[
|
|
"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=1.1.1",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_push.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
tagSha: true,
|
|
tagEdge: 'dev'
|
|
} as Inputs,
|
|
'edge',
|
|
[
|
|
'org/app:edge',
|
|
'org/app:sha-90dd603',
|
|
'ghcr.io/user/app:edge',
|
|
'ghcr.io/user/app:sha-90dd603'
|
|
],
|
|
[
|
|
"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=edge",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
[
|
|
'event_push_defbranch.env',
|
|
{
|
|
images: ['org/app', 'ghcr.io/user/app'],
|
|
tagSha: true,
|
|
tagEdge: 'dev'
|
|
} as Inputs,
|
|
'master',
|
|
[
|
|
'org/app:master',
|
|
'org/app:sha-90dd603',
|
|
'ghcr.io/user/app:master',
|
|
'ghcr.io/user/app:sha-90dd603'
|
|
],
|
|
[
|
|
"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=master",
|
|
"org.opencontainers.image.created=2020-01-10T00:30:00.000Z",
|
|
"org.opencontainers.image.revision=90dd6032fac8bda1b6c4436a2e65de27961ed071",
|
|
"org.opencontainers.image.licenses=MIT"
|
|
]
|
|
],
|
|
])('given %p event ', async (envFile, inputs, exVersion, exTags, exLabels) => {
|
|
process.env = dotenv.parse(fs.readFileSync(path.join(__dirname, 'fixtures', envFile)));
|
|
const context = github.context();
|
|
console.log(process.env, context);
|
|
|
|
const repo = await github.repo(process.env.GITHUB_TOKEN || '');
|
|
const meta = new Meta({...getInputs(), ...inputs}, context, repo);
|
|
|
|
const version = meta.version();
|
|
console.log('version', version);
|
|
expect(version).toEqual(exVersion);
|
|
|
|
const tags = meta.tags();
|
|
console.log('tags', tags);
|
|
expect(tags).toEqual(exTags);
|
|
|
|
const labels = meta.labels();
|
|
console.log('labels', labels);
|
|
expect(labels).toEqual(exLabels);
|
|
});
|
|
});
|