Revert "added validation for if ORIGIN_TAG=null"

This commit is contained in:
MathoAvito
2023-03-23 12:47:42 +02:00
committed by GitHub
parent e4150b2bb4
commit ea27c619d4
+1 -8
View File
@@ -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