From 6a98ef06a216ee0da64ce4bc986dda5d68b51654 Mon Sep 17 00:00:00 2001 From: Thomas Leplus Date: Mon, 22 Apr 2024 21:02:23 -0300 Subject: [PATCH] Update dockerimage.yml --- .github/workflows/dockerimage.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/dockerimage.yml b/.github/workflows/dockerimage.yml index 5f7c023..3af0ed1 100644 --- a/.github/workflows/dockerimage.yml +++ b/.github/workflows/dockerimage.yml @@ -18,11 +18,6 @@ jobs: - name: Set IMAGE run: echo "IMAGE=${GITHUB_REPOSITORY#*/docker-}" >> "${GITHUB_ENV}" - uses: actions/checkout@1d96c772d19495a3b5c517cd2bc0cb401ea0529f # v4.1.3 - - name: Install cosign - if: github.ref == 'refs/heads/main' - uses: sigstore/cosign-installer@59acb6260d9c0ba8f4a2f9d9b48431a222b68e20 # v3.5.0 - with: - cosign-release: v2.1.1 - uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0 - uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0 - uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 # v5.5.1 @@ -70,9 +65,13 @@ jobs: owner: context.repo.owner, repo: context.repo.repo, tag: `v${VERSION}`, + }).then(function(result) { + core.info(`Release v${VERSION} found`) + return result.name }).catch(function(error) { if (error.status === 404) { core.info(`Release v${VERSION} not found`) + return } else { throw error }