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 28750f1 commit 6227760Copy full SHA for 6227760
.github/workflows/comment-diffs.yml
@@ -267,10 +267,6 @@ jobs:
267
run: |
268
if ls outputs/*.txt; then
269
result=1 # Artifacts are not empty
270
- echo "ARTIFACTS<<EOF" >> $GITHUB_OUTPUT
271
- cat outputs/*.txt >> $GITHUB_OUTPUT
272
- echo "EOF" >> $GITHUB_OUTPUT
273
-
274
else
275
result=0 # Artifacts are empty
276
fi
@@ -283,6 +279,12 @@ jobs:
283
279
with:
284
280
github-token: ${{secrets.GITHUB_TOKEN}}
285
281
script: |
282
+ const fs = require('fs');
+
+ fs.readdirSync('./outputs').forEach(file => {
+ console.log(file);
286
+ });
287
288
const replaceTable = {
289
"module-legacy": "Native module",
290
"module-mixed": "Turbo module with backward compat",
0 commit comments