File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 70
70
INPUT_DOCKER_REGISTRY_URL : ${{ inputs.docker_registry_url }}
71
71
INPUT_PROJECT_NAME : ${{ inputs.project_name }}
72
72
with :
73
+ result-encoding : string
73
74
script : |
74
75
const base = {
75
76
'NPM_EMAIL': core.getInput('npm_email'),
88
89
...extraArgs,
89
90
];
90
91
91
- core.setOutput('docker_args', mergedArgs);
92
+ core.setOutput('docker_args', mergedArgs.join('\n') );
92
93
93
94
const versionInput = core.getInput('version');
94
95
core.setOutput('version', versionInput || context.sha);
@@ -126,4 +127,4 @@ runs:
126
127
tags : ${{ steps.resolve.outputs.ref }}/vue-storefront:${{ steps.resolve.outputs.version }}
127
128
cache-from : " type=registry,ref=${{ steps.resolve.outputs.ref }}/vue-storefront:buildcache"
128
129
cache-to : " type=registry,ref=${{ steps.resolve.outputs.ref }}/vue-storefront:buildcache,mode=max"
129
- build-args : ${{ fromJson( steps.resolve.outputs.docker_args) }}
130
+ build-args : ${{ steps.resolve.outputs.docker_args }}
Original file line number Diff line number Diff line change 60
60
INPUT_DOCKER_REGISTRY_URL : ${{ inputs.docker_registry_url }}
61
61
INPUT_PROJECT_NAME : ${{ inputs.project_name }}
62
62
with :
63
+ result-encoding : string
63
64
script : |
64
65
const base = {
65
66
'NPM_EMAIL': core.getInput('npm_email'),
77
78
...extraBuildArgs,
78
79
];
79
80
80
- core.setOutput('docker_args', mergedBuildArgs);
81
+ core.setOutput('docker_args', mergedBuildArgs.join('\n') );
81
82
82
83
const versionInput = core.getInput('version');
83
84
core.setOutput('version', versionInput || context.sha);
@@ -102,4 +103,4 @@ runs:
102
103
tags : ${{ steps.resolve.outputs.ref }}/vue-storefront-middleware:${{ steps.resolve.outputs.version }}
103
104
cache-from : " type=registry,ref=${{ steps.resolve.outputs.ref }}/vue-storefront-middleware:buildcache"
104
105
cache-to : " type=registry,ref=${{ steps.resolve.outputs.ref }}/vue-storefront-middleware:buildcache,mode=max"
105
- build-args : ${{ fromJson( steps.resolve.outputs.docker_args) }}
106
+ build-args : ${{ steps.resolve.outputs.docker_args }}
You can’t perform that action at this time.
0 commit comments