From 6fb736167d65731a87ee4a6e421f957a57067415 Mon Sep 17 00:00:00 2001 From: Frederik Prijck Date: Wed, 13 Dec 2023 10:40:31 +0100 Subject: [PATCH] Ensure tag-exists works as intended --- .github/actions/tag-exists/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/tag-exists/action.yml b/.github/actions/tag-exists/action.yml index 91bf744c..b5fbdb73 100644 --- a/.github/actions/tag-exists/action.yml +++ b/.github/actions/tag-exists/action.yml @@ -21,7 +21,7 @@ runs: using: composite steps: - - id: check + - id: tag-exists shell: bash run: | GET_API_URL="https://api.github.com/repos/${GITHUB_REPOSITORY}/git/ref/tags/${TAG_NAME}" @@ -33,4 +33,4 @@ runs: fi env: TAG_NAME: ${{ inputs.tag }} - GITHUB_TOKEN: ${{ inputs.token }} \ No newline at end of file + GITHUB_TOKEN: ${{ inputs.token }}