mirror of
https://github.com/redhat-actions/push-to-registry.git
synced 2025-02-22 18:21:20 +01:00
add the word 'local' to the image check messages (#46)
Signed-off-by: Tim Etchells <tetchel@gmail.com>
This commit is contained in:
parent
85f9459926
commit
cedd174f01
3 changed files with 4 additions and 4 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
|
@ -242,7 +242,7 @@ async function run(): Promise<void> {
|
|||
|
||||
async function pullImageFromDocker(): Promise<ImageStorageCheckResult> {
|
||||
core.info(`🔍 Checking if "${imageToPush}" with tag${tagsList.length !== 1 ? "s" : ""} `
|
||||
+ `"${tagsList.join(", ")}" is present in Docker image storage`);
|
||||
+ `"${tagsList.join(", ")}" is present in the local Docker image storage`);
|
||||
let imageWithTag;
|
||||
const foundTags: string[] = [];
|
||||
const missingTags: string[] = [];
|
||||
|
@ -275,7 +275,7 @@ async function pullImageFromDocker(): Promise<ImageStorageCheckResult> {
|
|||
async function checkImageInPodman(): Promise<ImageStorageCheckResult> {
|
||||
// check if images exist in Podman's storage
|
||||
core.info(`🔍 Checking if "${imageToPush}" with tag${tagsList.length !== 1 ? "s" : ""} `
|
||||
+ `"${tagsList.join(", ")}" is present in Podman image storage`);
|
||||
+ `"${tagsList.join(", ")}" is present in the local Podman image storage`);
|
||||
let imageWithTag;
|
||||
const foundTags: string[] = [];
|
||||
const missingTags: string[] = [];
|
||||
|
|
Loading…
Add table
Reference in a new issue