From 7041607e7245650c20c40aaec0b2bab9c25c18ee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mateusz=20Gosta=C5=84ski?= Date: Tue, 22 Oct 2024 14:48:50 +0200 Subject: [PATCH] fix: bugs --- build-frontend/action.yml | 4 ++-- build-middleware/action.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build-frontend/action.yml b/build-frontend/action.yml index 4466641..a44c278 100644 --- a/build-frontend/action.yml +++ b/build-frontend/action.yml @@ -84,13 +84,13 @@ runs: const extraArgs = core.getMultilineInput('docker_buildargs', { required: false }); const mergedArgs = [ - ...transformedBaseArgs + ...transformedBaseArgs, ...extraArgs, ]; core.setOutput('docker_args', mergedArgs); - const versionInput = core.getIntput('version'); + const versionInput = core.getInput('version'); core.setOutput('version', versionInput || context.sha); core.setOutput('ref', `${core.getInput('docker_registry_url')}/${core.getInput('project_name')}-storefrontcloud-io`); diff --git a/build-middleware/action.yml b/build-middleware/action.yml index e7ff1d5..d88dacc 100644 --- a/build-middleware/action.yml +++ b/build-middleware/action.yml @@ -79,7 +79,7 @@ runs: core.setOutput('docker_args', mergedBuildArgs); - const versionInput = core.getIntput('version'); + const versionInput = core.getInput('version'); core.setOutput('version', versionInput || context.sha); core.setOutput('ref', `${core.getInput('docker_registry_url')}/${core.getInput('project_name')}-storefrontcloud-io`);