Skip to content

Commit ce487dd

Browse files
committed
Fix validation script for PRs
1 parent 0e07c41 commit ce487dd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/validate-pr.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,9 @@ jobs:
3838
with:
3939
script: |
4040
const script = require('./scripts/publish-extensions.js');
41-
await script({github});
41+
await script(async (extension, context) => {
42+
console.log(`Would publish ${extension.id} with context:`, JSON.stringify(context, null, 2));
43+
});
4244
- name: Report results
4345
run: bun run ./report-extensions.ts
4446
- uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)