Skip to content

Commit 7041607

Browse files
committed
fix: bugs
1 parent 0a79240 commit 7041607

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

build-frontend/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,13 +84,13 @@ runs:
8484
8585
const extraArgs = core.getMultilineInput('docker_buildargs', { required: false });
8686
const mergedArgs = [
87-
...transformedBaseArgs
87+
...transformedBaseArgs,
8888
...extraArgs,
8989
];
9090
9191
core.setOutput('docker_args', mergedArgs);
9292
93-
const versionInput = core.getIntput('version');
93+
const versionInput = core.getInput('version');
9494
core.setOutput('version', versionInput || context.sha);
9595
9696
core.setOutput('ref', `${core.getInput('docker_registry_url')}/${core.getInput('project_name')}-storefrontcloud-io`);

build-middleware/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ runs:
7979
8080
core.setOutput('docker_args', mergedBuildArgs);
8181
82-
const versionInput = core.getIntput('version');
82+
const versionInput = core.getInput('version');
8383
core.setOutput('version', versionInput || context.sha);
8484
8585
core.setOutput('ref', `${core.getInput('docker_registry_url')}/${core.getInput('project_name')}-storefrontcloud-io`);

0 commit comments

Comments
 (0)