We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 89d0d3e commit a7dba9bCopy full SHA for a7dba9b
1 file changed
.github/workflows/build.yml
@@ -232,7 +232,7 @@ jobs:
232
}
233
234
const privateRepo = GitHub.context.payload.repository?.private ?? false;
235
- await core.group(`Set includes`, async () => {
+ await core.group(`Set includes output`, async () => {
236
let includes = [];
237
if (inpPlatforms.length === 0) {
238
includes.push({
@@ -253,7 +253,10 @@ jobs:
253
core.info(JSON.stringify(includes, null, 2));
254
core.setOutput('includes', JSON.stringify(includes));
255
});
256
- core.setOutput('sign', sign);
+ await core.group(`Set sign output`, async () => {
257
+ core.info(`sign: ${sign}`);
258
+ core.setOutput('sign', sign);
259
+ });
260
261
build:
262
runs-on: ${{ matrix.runner }}
0 commit comments