Skip to content

Commit

Permalink
fix: bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
grixu committed Oct 22, 2024
1 parent 0a79240 commit 7041607
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build-frontend/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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`);
Expand Down
2 changes: 1 addition & 1 deletion build-middleware/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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`);
Expand Down

0 comments on commit 7041607

Please sign in to comment.