[ACA-4649] fix gha checks

This commit is contained in:
Denys Vuika
2023-03-06 17:33:39 -05:00
committed by GitHub
parent b937e23281
commit 483af3165c
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ runs:
- name: Get docker image tag name
shell: bash
run: |
if [[ ${{ inputs.branch_name }} == "master" ]]; then
if [[ "${{ inputs.branch_name }}" == "master" ]]; then
TAG_VERSION=$(grep -m1 version package.json | awk '{ print $2 }' | sed 's/[", ]//g')
else
TAG_VERSION=${{ inputs.branch_name }}-${{ github.run_id }}