TP-39914 | fix

This commit is contained in:
Aman Chaturvedi
2024-03-12 11:24:58 +05:30
parent 890de3206f
commit 14e8f591c0

View File

@@ -72,7 +72,7 @@ jobs:
- name: Check if tag exists
id: check_tag
run: |
TAG_NAME=$version
TAG_NAME="${{ env.version }}"
EXISTING_TAG=$(git ls-remote --tags origin refs/tags/$TAG_NAME)
if [[ -z "$EXISTING_TAG" ]]; then
echo "Tag $TAG_NAME does not exist."
@@ -94,7 +94,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.MY_REPO_PAT }}
- name: Create release tag
run: |
TAG_NAME="${{ env.package_version }}"
TAG_NAME="${{ env.version }}"
RELEASE_NAME="Release $TAG_NAME"
DESCRIPTION="${{ github.event.inputs.description }}"
REPO="navi-medici/address-verification-app"