Skip to content

Commit 0d7735b

Browse files
committed
Check that the find package job produces appropriate outputs
1 parent 661dc91 commit 0d7735b

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

.github/actions/src/info/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ async function main() {
9494
</div>`;
9595
});
9696

97-
core.info(summaryItems.join('\n'));
9897
core.summary.addList(summaryItems);
9998
core.setOutput(packageType, packages);
10099
}

.github/workflows/workflow-again.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,11 @@ jobs:
3636
bundles: ${{ steps.info.outputs.bundles }}
3737
tabs: ${{ steps.info.outputs.tabs }}
3838
libs: ${{ steps.info.outputs.libs }}
39+
40+
tabs:
41+
name: Do work with the tabs
42+
runs-on: ubuntu-latest
43+
needs: find-packages
44+
steps:
45+
- name: Just Echo
46+
run: echo ${{ needs.find-packages.outputs.bundles }}

0 commit comments

Comments
 (0)