From 9c8d1b52ce274f0a95c3683a460b04ae3e92c291 Mon Sep 17 00:00:00 2001 From: Thomas Leplus Date: Fri, 26 Apr 2024 22:55:08 -0300 Subject: [PATCH] Update dockerimage.yml --- .github/workflows/dockerimage.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index a4fccd2..0c4d6c2 100644 --- a/.github/workflows/dockerimage.yml +++ b/.github/workflows/dockerimage.yml @@ -85,8 +85,9 @@ jobs: repo: context.repo.repo, tag: `v${VERSION}`, }).then(function(result) { - core.info(`Release ${result.data.name} found`) - return result.data.name + core.info(JSON.stringify(result)) + core.info(`Release ${result.data.tag_name} found`) + return result.data.tag_name }).catch(function(error) { if (error.status === 404) { core.info(`Release v${VERSION} not found`)