From ea27c619d46d88401e1f8365c2a1ae7d2e2f93d1 Mon Sep 17 00:00:00 2001 From: MathoAvito <97397896+MathoAvito@users.noreply.github.com> Date: Thu, 23 Mar 2023 12:47:42 +0200 Subject: [PATCH] Revert "added validation for if ORIGIN_TAG=null" --- .github/actions/tag-action/action.yaml | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/actions/tag-action/action.yaml b/.github/actions/tag-action/action.yaml index 37a4dbf2..6274472f 100644 --- a/.github/actions/tag-action/action.yaml +++ b/.github/actions/tag-action/action.yaml @@ -17,14 +17,7 @@ runs: using: "composite" steps: - run: | - if [[ -z "${{ inputs.ORIGINAL_TAG }}" ]]; then - echo "The value of ORIGINAL_TAG is ${{ inputs.ORIGINAL_TAG }}" - echo "Setting the value of ORIGINAL_TAG to ${{ github.ref_name }}" - export ORIGINAL_TAG=${{ github.ref_name }} - fi - shell: bash - - - run: | + SUB='-rc' if [[ "${{ inputs.ORIGINAL_TAG }}" == *"${{ inputs.SUB_STRING }}"* ]]; then echo "Release candidate tag found." else