Skip to content

Commit a7dba9b

Browse files
committed
test
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
1 parent 89d0d3e commit a7dba9b

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ jobs:
232232
}
233233
234234
const privateRepo = GitHub.context.payload.repository?.private ?? false;
235-
await core.group(`Set includes`, async () => {
235+
await core.group(`Set includes output`, async () => {
236236
let includes = [];
237237
if (inpPlatforms.length === 0) {
238238
includes.push({
@@ -253,7 +253,10 @@ jobs:
253253
core.info(JSON.stringify(includes, null, 2));
254254
core.setOutput('includes', JSON.stringify(includes));
255255
});
256-
core.setOutput('sign', sign);
256+
await core.group(`Set sign output`, async () => {
257+
core.info(`sign: ${sign}`);
258+
core.setOutput('sign', sign);
259+
});
257260
258261
build:
259262
runs-on: ${{ matrix.runner }}

0 commit comments

Comments
 (0)