We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a2f05 commit b87ba64Copy full SHA for b87ba64
.github/workflows/build.yml
@@ -63,9 +63,12 @@ jobs:
63
run_id: context.runId,
64
});
65
66
+ console.log(artifacts);
67
+
68
Object.keys(raw.plugins).forEach((plugin) => {
69
let row = [{data: plugin, header: true}];
70
let filtered = artifacts.filter((artifact) => artifact.name.includes(plugin));
71
+ console.log(`plugin: ${plugin}, matches: ${filtered.length}`);
72
platforms.forEach((tag) => {
73
row.push({
74
data: filtered.some((artifact) => artifact.name.includes(tag)) ? ':link:' : ':x:'
0 commit comments