add-host input

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2022-01-30 18:33:31 +01:00
parent d8b0ca6f0e
commit eebf87aed1
No known key found for this signature in database
GPG key ID: 3248E46B6BB8C7F7
7 changed files with 41 additions and 0 deletions

4
dist/index.js generated vendored
View file

@ -270,6 +270,7 @@ exports.tmpNameSync = tmpNameSync;
function getInputs(defaultContext) {
return __awaiter(this, void 0, void 0, function* () {
return {
addHost: yield getInputList('add-host'),
allow: yield getInputList('allow'),
buildArgs: yield getInputList('build-args', true),
builder: core.getInput('builder'),
@ -311,6 +312,9 @@ exports.getArgs = getArgs;
function getBuildArgs(inputs, defaultContext, buildxVersion) {
return __awaiter(this, void 0, void 0, function* () {
let args = ['build'];
if (inputs.addHost.length > 0) {
args.push('--add-host', inputs.addHost.join(','));
}
if (inputs.allow.length > 0) {
args.push('--allow', inputs.allow.join(','));
}