2020-10-25 15:13:43 +01:00
|
|
|
import * as handlebars from 'handlebars';
|
2020-12-24 04:13:41 +01:00
|
|
|
import * as fs from 'fs';
|
|
|
|
import * as path from 'path';
|
2020-12-23 22:09:38 +01:00
|
|
|
import moment from 'moment';
|
2021-07-06 13:56:48 +02:00
|
|
|
import * as pep440 from '@renovate/pep440';
|
2020-11-17 23:31:03 +01:00
|
|
|
import * as semver from 'semver';
|
2020-12-24 04:13:41 +01:00
|
|
|
import {Inputs, tmpDir} from './context';
|
2021-05-25 02:07:25 +02:00
|
|
|
import {ReposGetResponseData} from './github';
|
2021-03-29 13:04:53 +02:00
|
|
|
import * as tcl from './tag';
|
|
|
|
import * as fcl from './flavor';
|
2020-12-01 05:50:39 +01:00
|
|
|
import * as core from '@actions/core';
|
2020-10-25 02:25:23 +01:00
|
|
|
import {Context} from '@actions/github/lib/context';
|
|
|
|
|
2020-10-26 01:39:21 +01:00
|
|
|
export interface Version {
|
2020-11-17 23:31:03 +01:00
|
|
|
main: string | undefined;
|
|
|
|
partial: string[];
|
2021-03-29 13:04:53 +02:00
|
|
|
latest: boolean | undefined;
|
2020-10-26 01:39:21 +01:00
|
|
|
}
|
|
|
|
|
2020-10-25 02:25:23 +01:00
|
|
|
export class Meta {
|
2020-12-01 05:38:08 +01:00
|
|
|
public readonly version: Version;
|
|
|
|
|
2020-10-25 02:25:23 +01:00
|
|
|
private readonly inputs: Inputs;
|
|
|
|
private readonly context: Context;
|
|
|
|
private readonly repo: ReposGetResponseData;
|
2021-03-29 13:04:53 +02:00
|
|
|
private readonly tags: tcl.Tag[];
|
|
|
|
private readonly flavor: fcl.Flavor;
|
2020-10-25 15:13:43 +01:00
|
|
|
private readonly date: Date;
|
2020-10-25 02:25:23 +01:00
|
|
|
|
|
|
|
constructor(inputs: Inputs, context: Context, repo: ReposGetResponseData) {
|
2021-05-25 18:45:23 +02:00
|
|
|
// Needs to override Git reference with pr ref instead of upstream branch ref
|
|
|
|
// for pull_request_target event
|
|
|
|
if (/pull_request_target/.test(context.eventName)) {
|
|
|
|
context.ref = `refs/pull/${context.payload.number}/merge`;
|
|
|
|
}
|
|
|
|
|
2020-10-25 02:25:23 +01:00
|
|
|
this.inputs = inputs;
|
|
|
|
this.context = context;
|
|
|
|
this.repo = repo;
|
2021-03-29 13:04:53 +02:00
|
|
|
this.tags = tcl.Transform(inputs.tags);
|
|
|
|
this.flavor = fcl.Transform(inputs.flavor);
|
2020-10-25 15:13:43 +01:00
|
|
|
this.date = new Date();
|
2020-12-01 05:38:08 +01:00
|
|
|
this.version = this.getVersion();
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|
|
|
|
|
2020-12-01 05:38:08 +01:00
|
|
|
private getVersion(): Version {
|
2020-12-04 18:12:39 +01:00
|
|
|
let version: Version = {
|
2020-11-17 23:31:03 +01:00
|
|
|
main: undefined,
|
|
|
|
partial: [],
|
2021-03-29 13:04:53 +02:00
|
|
|
latest: undefined
|
2020-10-26 01:39:21 +01:00
|
|
|
};
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
for (const tag of this.tags) {
|
2021-05-07 21:53:30 +02:00
|
|
|
if (!/true/i.test(tag.attrs['enable'])) {
|
2021-03-30 13:11:51 +02:00
|
|
|
continue;
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
switch (tag.type) {
|
|
|
|
case tcl.Type.Schedule: {
|
|
|
|
version = this.procSchedule(version, tag);
|
|
|
|
break;
|
2020-10-26 01:39:21 +01:00
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
case tcl.Type.Semver: {
|
|
|
|
version = this.procSemver(version, tag);
|
|
|
|
break;
|
|
|
|
}
|
2021-07-06 13:56:48 +02:00
|
|
|
case tcl.Type.Pep440: {
|
|
|
|
version = this.procPep440(version, tag);
|
|
|
|
break;
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
case tcl.Type.Match: {
|
|
|
|
version = this.procMatch(version, tag);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case tcl.Type.Ref: {
|
|
|
|
if (tag.attrs['event'] == tcl.RefEvent.Branch) {
|
|
|
|
version = this.procRefBranch(version, tag);
|
|
|
|
} else if (tag.attrs['event'] == tcl.RefEvent.Tag) {
|
|
|
|
version = this.procRefTag(version, tag);
|
|
|
|
} else if (tag.attrs['event'] == tcl.RefEvent.PR) {
|
|
|
|
version = this.procRefPr(version, tag);
|
2020-11-17 23:31:03 +01:00
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case tcl.Type.Edge: {
|
|
|
|
version = this.procEdge(version, tag);
|
|
|
|
break;
|
2020-11-17 23:31:03 +01:00
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
case tcl.Type.Raw: {
|
|
|
|
version = this.procRaw(version, tag);
|
|
|
|
break;
|
2020-10-27 02:32:26 +01:00
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
case tcl.Type.Sha: {
|
|
|
|
version = this.procSha(version, tag);
|
|
|
|
break;
|
2020-10-26 01:39:21 +01:00
|
|
|
}
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
version.partial = version.partial.filter((item, index) => version.partial.indexOf(item) === index);
|
|
|
|
if (version.latest == undefined) {
|
|
|
|
version.latest = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
private procSchedule(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/schedule/.test(this.context.eventName)) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
const currentDate = this.date;
|
2021-05-07 21:53:30 +02:00
|
|
|
const vraw = this.setValue(
|
2021-04-07 20:31:35 +02:00
|
|
|
handlebars.compile(tag.attrs['pattern'])({
|
|
|
|
date: function (format) {
|
|
|
|
return moment(currentDate).utc().format(format);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
tag
|
|
|
|
);
|
2021-03-29 13:04:53 +02:00
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procSemver(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/tags\//.test(this.context.ref) && tag.attrs['value'].length == 0) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
let vraw: string;
|
|
|
|
if (tag.attrs['value'].length > 0) {
|
2021-05-07 21:53:30 +02:00
|
|
|
vraw = this.setGlobalExp(tag.attrs['value']);
|
2021-03-29 13:04:53 +02:00
|
|
|
} else {
|
|
|
|
vraw = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
|
|
|
}
|
|
|
|
if (!semver.valid(vraw)) {
|
|
|
|
core.warning(`${vraw} is not a valid semver. More info: https://semver.org/`);
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
let latest: boolean = false;
|
|
|
|
const sver = semver.parse(vraw, {
|
|
|
|
includePrerelease: true
|
|
|
|
});
|
|
|
|
if (semver.prerelease(vraw)) {
|
2021-05-07 21:53:30 +02:00
|
|
|
vraw = this.setValue(handlebars.compile('{{version}}')(sver), tag);
|
2021-03-29 13:04:53 +02:00
|
|
|
} else {
|
2021-05-07 21:53:30 +02:00
|
|
|
vraw = this.setValue(handlebars.compile(tag.attrs['pattern'])(sver), tag);
|
2021-03-29 13:04:53 +02:00
|
|
|
latest = true;
|
|
|
|
}
|
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? latest : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
2021-07-06 13:56:48 +02:00
|
|
|
private procPep440(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/tags\//.test(this.context.ref) && tag.attrs['value'].length == 0) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
let vraw: string;
|
|
|
|
if (tag.attrs['value'].length > 0) {
|
|
|
|
vraw = this.setGlobalExp(tag.attrs['value']);
|
|
|
|
} else {
|
|
|
|
vraw = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
|
|
|
}
|
|
|
|
if (!pep440.valid(vraw)) {
|
|
|
|
core.warning(`${vraw} does not conform to PEP 440. More info: https://www.python.org/dev/peps/pep-0440`);
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
let latest: boolean = false;
|
|
|
|
const pver = pep440.explain(vraw);
|
|
|
|
if (pver.is_prerelease || pver.is_postrelease || pver.is_devrelease) {
|
|
|
|
vraw = this.setValue(pep440.clean(vraw), tag);
|
|
|
|
} else {
|
|
|
|
vraw = this.setValue(
|
|
|
|
handlebars.compile(tag.attrs['pattern'])({
|
|
|
|
raw: function () {
|
|
|
|
return vraw;
|
|
|
|
},
|
|
|
|
version: function () {
|
|
|
|
return pep440.clean(vraw);
|
|
|
|
},
|
|
|
|
major: function () {
|
|
|
|
return pep440.major(vraw);
|
|
|
|
},
|
|
|
|
minor: function () {
|
|
|
|
return pep440.minor(vraw);
|
|
|
|
},
|
|
|
|
patch: function () {
|
|
|
|
return pep440.patch(vraw);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
tag
|
|
|
|
);
|
|
|
|
latest = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? latest : this.flavor.latest == 'true');
|
|
|
|
}
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
private procMatch(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/tags\//.test(this.context.ref) && tag.attrs['value'].length == 0) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
let vraw: string;
|
|
|
|
if (tag.attrs['value'].length > 0) {
|
2021-05-07 21:53:30 +02:00
|
|
|
vraw = this.setGlobalExp(tag.attrs['value']);
|
2021-03-29 13:04:53 +02:00
|
|
|
} else {
|
|
|
|
vraw = this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
|
|
|
}
|
|
|
|
|
|
|
|
let tmatch;
|
|
|
|
const isRegEx = tag.attrs['pattern'].match(/^\/(.+)\/(.*)$/);
|
|
|
|
if (isRegEx) {
|
|
|
|
tmatch = vraw.match(new RegExp(isRegEx[1], isRegEx[2]));
|
|
|
|
} else {
|
|
|
|
tmatch = vraw.match(tag.attrs['pattern']);
|
|
|
|
}
|
2021-04-05 21:19:05 +02:00
|
|
|
if (!tmatch) {
|
|
|
|
core.warning(`${tag.attrs['pattern']} does not match ${vraw}.`);
|
|
|
|
return version;
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
2021-04-05 21:19:05 +02:00
|
|
|
if (typeof tmatch[tag.attrs['group']] === 'undefined') {
|
|
|
|
core.warning(`Group ${tag.attrs['group']} does not exist for ${tag.attrs['pattern']} pattern.`);
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
vraw = this.setValue(tmatch[tag.attrs['group']], tag);
|
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? true : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procRefBranch(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/heads\//.test(this.context.ref)) {
|
|
|
|
return version;
|
|
|
|
}
|
2021-05-07 21:53:30 +02:00
|
|
|
const vraw = this.setValue(this.context.ref.replace(/^refs\/heads\//g, '').replace(/[^a-zA-Z0-9._-]+/g, '-'), tag);
|
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procRefTag(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/tags\//.test(this.context.ref)) {
|
|
|
|
return version;
|
|
|
|
}
|
2021-05-07 21:53:30 +02:00
|
|
|
const vraw = this.setValue(this.context.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-'), tag);
|
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? true : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procRefPr(version: Version, tag: tcl.Tag): Version {
|
2021-05-25 18:45:23 +02:00
|
|
|
if (!/^refs\/pull\//.test(this.context.ref)) {
|
2021-03-29 13:04:53 +02:00
|
|
|
return version;
|
|
|
|
}
|
2021-05-23 03:54:23 +02:00
|
|
|
|
2021-05-25 18:45:23 +02:00
|
|
|
const vraw = this.setValue(this.context.ref.replace(/^refs\/pull\//g, '').replace(/\/merge$/g, ''), tag);
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procEdge(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!/^refs\/heads\//.test(this.context.ref)) {
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
|
|
|
let val = this.context.ref.replace(/^refs\/heads\//g, '').replace(/[^a-zA-Z0-9._-]+/g, '-');
|
|
|
|
if (tag.attrs['branch'].length == 0) {
|
|
|
|
tag.attrs['branch'] = this.repo.default_branch;
|
|
|
|
}
|
|
|
|
if (tag.attrs['branch'] === val) {
|
|
|
|
val = 'edge';
|
|
|
|
}
|
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
const vraw = this.setValue(val, tag);
|
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2020-10-25 02:40:42 +01:00
|
|
|
}
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
private procRaw(version: Version, tag: tcl.Tag): Version {
|
2021-05-07 21:53:30 +02:00
|
|
|
const vraw = this.setValue(this.setGlobalExp(tag.attrs['value']), tag);
|
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private procSha(version: Version, tag: tcl.Tag): Version {
|
|
|
|
if (!this.context.sha) {
|
|
|
|
return version;
|
|
|
|
}
|
2021-05-11 20:14:23 +02:00
|
|
|
|
|
|
|
let val = this.context.sha;
|
|
|
|
if (tag.attrs['format'] === tcl.ShaFormat.Short) {
|
|
|
|
val = this.context.sha.substr(0, 7);
|
|
|
|
}
|
|
|
|
|
|
|
|
const vraw = this.setValue(val, tag);
|
2021-05-07 21:53:30 +02:00
|
|
|
return Meta.setVersion(version, vraw, this.flavor.latest == 'auto' ? false : this.flavor.latest == 'true');
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
private static setVersion(version: Version, val: string, latest: boolean): Version {
|
|
|
|
if (val.length == 0) {
|
|
|
|
return version;
|
|
|
|
}
|
2021-03-29 13:04:53 +02:00
|
|
|
if (version.main == undefined) {
|
2021-05-07 21:53:30 +02:00
|
|
|
version.main = val;
|
|
|
|
} else if (val !== version.main) {
|
|
|
|
version.partial.push(val);
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
if (version.latest == undefined) {
|
2021-05-07 21:53:30 +02:00
|
|
|
version.latest = latest;
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
return version;
|
|
|
|
}
|
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
private setValue(val: string, tag: tcl.Tag): string {
|
2021-04-07 20:54:35 +02:00
|
|
|
if (tag.attrs.hasOwnProperty('prefix')) {
|
2021-05-07 21:53:30 +02:00
|
|
|
val = `${this.setGlobalExp(tag.attrs['prefix'])}${val}`;
|
2021-03-29 13:04:53 +02:00
|
|
|
} else if (this.flavor.prefix.length > 0) {
|
2021-05-07 21:53:30 +02:00
|
|
|
val = `${this.setGlobalExp(this.flavor.prefix)}${val}`;
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
2021-04-07 20:54:35 +02:00
|
|
|
if (tag.attrs.hasOwnProperty('suffix')) {
|
2021-05-07 21:53:30 +02:00
|
|
|
val = `${val}${this.setGlobalExp(tag.attrs['suffix'])}`;
|
2021-03-29 13:04:53 +02:00
|
|
|
} else if (this.flavor.suffix.length > 0) {
|
2021-05-07 21:53:30 +02:00
|
|
|
val = `${val}${this.setGlobalExp(this.flavor.suffix)}`;
|
2021-03-29 13:04:53 +02:00
|
|
|
}
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2021-05-07 21:53:30 +02:00
|
|
|
private setGlobalExp(val): string {
|
|
|
|
const ctx = this.context;
|
|
|
|
return handlebars.compile(val)({
|
|
|
|
branch: function () {
|
|
|
|
if (!/^refs\/heads\//.test(ctx.ref)) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return ctx.ref.replace(/^refs\/heads\//g, '').replace(/[^a-zA-Z0-9._-]+/g, '-');
|
|
|
|
},
|
|
|
|
tag: function () {
|
|
|
|
if (!/^refs\/tags\//.test(ctx.ref)) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return ctx.ref.replace(/^refs\/tags\//g, '').replace(/\//g, '-');
|
|
|
|
},
|
|
|
|
sha: function () {
|
|
|
|
return ctx.sha.substr(0, 7);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
public getTags(): Array<string> {
|
2020-12-01 05:38:08 +01:00
|
|
|
if (!this.version.main) {
|
2020-10-26 01:39:21 +01:00
|
|
|
return [];
|
|
|
|
}
|
|
|
|
|
2020-10-25 02:25:23 +01:00
|
|
|
let tags: Array<string> = [];
|
|
|
|
for (const image of this.inputs.images) {
|
2020-11-20 16:19:08 +01:00
|
|
|
const imageLc = image.toLowerCase();
|
2020-12-01 05:38:08 +01:00
|
|
|
tags.push(`${imageLc}:${this.version.main}`);
|
|
|
|
for (const partial of this.version.partial) {
|
2020-11-20 16:19:08 +01:00
|
|
|
tags.push(`${imageLc}:${partial}`);
|
2020-11-17 23:31:03 +01:00
|
|
|
}
|
2020-12-01 05:38:08 +01:00
|
|
|
if (this.version.latest) {
|
2021-07-05 20:37:02 +02:00
|
|
|
tags.push(`${imageLc}:${this.flavor.prefixLatest ? this.flavor.prefix : ''}latest${this.flavor.suffixLatest ? this.flavor.suffix : ''}`);
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return tags;
|
|
|
|
}
|
|
|
|
|
2021-03-29 13:04:53 +02:00
|
|
|
public getLabels(): Array<string> {
|
2020-12-23 22:09:38 +01:00
|
|
|
let labels: Array<string> = [
|
2020-10-25 02:25:23 +01:00
|
|
|
`org.opencontainers.image.title=${this.repo.name || ''}`,
|
|
|
|
`org.opencontainers.image.description=${this.repo.description || ''}`,
|
|
|
|
`org.opencontainers.image.url=${this.repo.html_url || ''}`,
|
2020-10-31 20:16:51 +01:00
|
|
|
`org.opencontainers.image.source=${this.repo.html_url || ''}`,
|
2020-12-01 05:38:08 +01:00
|
|
|
`org.opencontainers.image.version=${this.version.main || ''}`,
|
2020-10-25 15:13:43 +01:00
|
|
|
`org.opencontainers.image.created=${this.date.toISOString()}`,
|
2020-10-25 02:25:23 +01:00
|
|
|
`org.opencontainers.image.revision=${this.context.sha || ''}`,
|
|
|
|
`org.opencontainers.image.licenses=${this.repo.license?.spdx_id || ''}`
|
|
|
|
];
|
2021-03-29 13:04:53 +02:00
|
|
|
labels.push(...this.inputs.labels);
|
2020-12-23 22:09:38 +01:00
|
|
|
return labels;
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|
2020-12-24 04:13:41 +01:00
|
|
|
|
2021-05-22 21:23:06 +02:00
|
|
|
public getJSON(): {} {
|
|
|
|
return {
|
|
|
|
tags: this.getTags(),
|
|
|
|
labels: this.getLabels().reduce((res, label) => {
|
|
|
|
const matches = label.match(/([^=]*)=(.*)/);
|
|
|
|
if (!matches) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
res[matches[1]] = matches[2];
|
|
|
|
return res;
|
|
|
|
}, {})
|
|
|
|
};
|
|
|
|
}
|
2020-12-24 04:13:41 +01:00
|
|
|
|
2021-05-22 21:23:06 +02:00
|
|
|
public getBakeFile(): string {
|
2021-05-10 15:54:35 +02:00
|
|
|
const bakeFile = path.join(tmpDir(), 'docker-metadata-action-bake.json').split(path.sep).join(path.posix.sep);
|
2020-12-24 04:13:41 +01:00
|
|
|
fs.writeFileSync(
|
|
|
|
bakeFile,
|
|
|
|
JSON.stringify(
|
|
|
|
{
|
|
|
|
target: {
|
2021-04-30 00:51:48 +02:00
|
|
|
[this.inputs.bakeTarget]: {
|
2021-03-29 13:04:53 +02:00
|
|
|
tags: this.getTags(),
|
2021-05-22 21:23:06 +02:00
|
|
|
labels: this.getLabels().reduce((res, label) => {
|
|
|
|
const matches = label.match(/([^=]*)=(.*)/);
|
|
|
|
if (!matches) {
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
res[matches[1]] = matches[2];
|
|
|
|
return res;
|
|
|
|
}, {}),
|
2020-12-24 16:45:28 +01:00
|
|
|
args: {
|
|
|
|
DOCKER_META_IMAGES: this.inputs.images.join(','),
|
|
|
|
DOCKER_META_VERSION: this.version.main
|
|
|
|
}
|
2020-12-24 04:13:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
null,
|
|
|
|
2
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
return bakeFile;
|
|
|
|
}
|
2020-10-25 02:25:23 +01:00
|
|
|
}
|