Skip to content

Commit fed20cb

Browse files
committed
debugging empty manifests section
1 parent 3495b4b commit fed20cb

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

dist/index.js

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,10 @@ async function run() {
2626
id: github.context.runId.toString()
2727
});
2828

29-
core.debug(`Manifests: ${manifests}`);
29+
core.debug(`Manifests: ${manifests?.length}`);
30+
3031
manifests?.forEach(manifest => {
32+
core.debug(`Manifest: ${JSON.stringify(manifest)}`);
3133
snapshot.addManifest(manifest);
3234
});
3335

0 commit comments

Comments
 (0)