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 15c3fc7 commit eb4c734Copy full SHA for eb4c734
.github/workflows/build.yml
@@ -67,9 +67,12 @@ jobs:
67
artifacts.push(...page);
68
});
69
70
+ console.log(artifacts);
71
+
72
Object.keys(raw.plugins).forEach((plugin) => {
73
let row = [{data: plugin, header: true}];
74
let filtered = artifacts.filter((artifact) => artifact.name.includes(plugin));
75
+ console.log(`plugin: ${plugin}, matches: ${filtered.length}`);
76
platforms.forEach((tag) => {
77
row.push({
78
data: filtered.some((artifact) => artifact.name.includes(tag)) ? ':o:' : ':x:'
0 commit comments