Resolve reviews

Signed-off-by: divyansh42 <diagrawa@redhat.com>
This commit is contained in:
divyansh42 2021-11-11 13:24:39 +05:30
parent 32c8997d46
commit 9c4398c33e
3 changed files with 12 additions and 11 deletions

4
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View file

@ -406,7 +406,7 @@ async function checkIfManifestsExists(): Promise<boolean> {
const foundManifests = [];
const missingManifests = [];
// check if manifest exist in Podman's storage
core.debug(`🔍 Checking if the given image is manifest or not.`);
core.info(`🔍 Checking if the given image is manifest or not.`);
for (const manifest of sourceImages) {
const commandResult: ExecResult = await execute(
await getPodmanPath(),
@ -421,17 +421,18 @@ async function checkIfManifestsExists(): Promise<boolean> {
}
}
if (foundManifests.length > 0) {
core.info(`Image${foundManifests.length !== 1 ? "s" : ""} "${foundManifests.join(", ")}" `
+ `${foundManifests.length !== 1 ? "are" : "is"} manifests.`);
}
if (foundManifests.length > 0 && missingManifests.length > 0) {
throw new Error(`Manifest${missingManifests.length !== 1 ? "s" : ""} "${missingManifests.join(", ")}" `
+ `not found in the Podman image storage.`);
+ `not found in the Podman image storage. Make sure that all the provided images are either `
+ `manifests or container images.`);
}
if (missingManifests.length === sourceImages.length) {
return false;
}
return true;
return foundManifests.length === sourceImages.length;
}
async function execute(