mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-02-23 02:21:22 +01:00
Address review feedbacks
This commit is contained in:
parent
4720effdc4
commit
d1bec30625
3 changed files with 5 additions and 5 deletions
2
dist/index.js
vendored
2
dist/index.js
vendored
File diff suppressed because one or more lines are too long
2
dist/index.js.map
vendored
2
dist/index.js.map
vendored
File diff suppressed because one or more lines are too long
|
@ -169,7 +169,7 @@ async function run(): Promise<void> {
|
|||
}
|
||||
else if (allTagsinDocker) {
|
||||
core.info(
|
||||
`"${sourceImages[0]}" was found in the Docker image storage, but not in the Podman `
|
||||
`Tag "${sourceImages[0]}" was found in the Docker image storage, but not in the Podman `
|
||||
+ `image storage. The image(s) will be pulled into Podman image storage, pushed, and then `
|
||||
+ `removed from the Podman image storage.`
|
||||
);
|
||||
|
@ -177,7 +177,7 @@ async function run(): Promise<void> {
|
|||
}
|
||||
else {
|
||||
core.info(
|
||||
`"${sourceImages[0]}" was found in the Podman image storage, but not in the Docker `
|
||||
`Tag "${sourceImages[0]}" was found in the Podman image storage, but not in the Docker `
|
||||
+ `image storage. The image(s) will be pushed from Podman image storage.`
|
||||
);
|
||||
}
|
||||
|
@ -285,7 +285,7 @@ async function pullImageFromDocker(): Promise<ImageStorageCheckResult> {
|
|||
|
||||
async function checkImageInPodman(): Promise<ImageStorageCheckResult> {
|
||||
// check if images exist in Podman's storage
|
||||
core.info(`🔍 Checking if "${sourceImages.join(",")}" present in the local Podman image storage`);
|
||||
core.info(`🔍 Checking if "${sourceImages.join(", ")}" present in the local Podman image storage`);
|
||||
const foundTags: string[] = [];
|
||||
const missingTags: string[] = [];
|
||||
try {
|
||||
|
|
Loading…
Add table
Reference in a new issue