debugging empty manifests section
This commit is contained in:
3
dist/index.js
generated
vendored
3
dist/index.js
generated
vendored
@@ -23937,8 +23937,9 @@ function run() {
|
||||
correlator: `${github.context.job}`,
|
||||
id: github.context.runId.toString()
|
||||
});
|
||||
core.debug(`Manifests: ${manifests}`);
|
||||
core.debug(`Manifests: ${manifests === null || manifests === void 0 ? void 0 : manifests.length}`);
|
||||
manifests === null || manifests === void 0 ? void 0 : manifests.forEach(manifest => {
|
||||
core.debug(`Manifest: ${JSON.stringify(manifest)}`);
|
||||
snapshot.addManifest(manifest);
|
||||
});
|
||||
(0, dependency_submission_toolkit_1.submitSnapshot)(snapshot);
|
||||
|
||||
2
dist/index.js.map
generated
vendored
2
dist/index.js.map
generated
vendored
File diff suppressed because one or more lines are too long
4
index.ts
4
index.ts
@@ -26,8 +26,10 @@ async function run() {
|
||||
id: github.context.runId.toString()
|
||||
});
|
||||
|
||||
core.debug(`Manifests: ${manifests}`);
|
||||
core.debug(`Manifests: ${manifests?.length}`);
|
||||
|
||||
manifests?.forEach(manifest => {
|
||||
core.debug(`Manifest: ${JSON.stringify(manifest)}`);
|
||||
snapshot.addManifest(manifest);
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user