File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -253,6 +253,7 @@ jobs:
253253 core.info(JSON.stringify(includes, null, 2));
254254 core.setOutput('includes', JSON.stringify(includes));
255255 });
256+ core.setOutput('sign', sign);
256257
257258 build :
258259 runs-on : ${{ matrix.runner }}
@@ -595,7 +596,7 @@ jobs:
595596 runs-on : ubuntu-24.04
596597 outputs :
597598 meta-json : ${{ steps.meta.outputs.json }}
598- cosign-version : ${{ inputs .sign && env.COSIGN_VERSION || '' }}
599+ cosign-version : ${{ needs.prepare.outputs .sign && env.COSIGN_VERSION || '' }}
599600 cosign-verify-commands : ${{ steps.set.outputs.cosign-verify-commands }}
600601 artifact-name : ${{ inputs.artifact-upload && inputs.artifact-name || '' }}
601602 output-type : ${{ inputs.output }}
@@ -679,7 +680,7 @@ jobs:
679680 uses : actions/github-script@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
680681 env :
681682 INPUT_BUILD-OUTPUTS : ${{ toJSON(needs.build.outputs) }}
682- INPUT_SIGN : ${{ needs.prepare.outputs.sign }}
683+ INPUT_SIGNED : ${{ needs.prepare.outputs.sign }}
683684 with :
684685 script : |
685686 const inpBuildOutputs = JSON.parse(core.getInput('build-outputs'));
You can’t perform that action at this time.
0 commit comments