From 068536d7108c37b49fa2db042bb509a8c6293e0a Mon Sep 17 00:00:00 2001 From: Ziga Cernigoj Date: Thu, 19 Oct 2023 14:07:55 +0200 Subject: [PATCH] fix wrong variable reference in deploy-testing github action --- .github/workflows/deploy_testing.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy_testing.yaml b/.github/workflows/deploy_testing.yaml index 61049359..b8a73978 100644 --- a/.github/workflows/deploy_testing.yaml +++ b/.github/workflows/deploy_testing.yaml @@ -39,7 +39,7 @@ jobs: run: | echo "Tag name from GITHUB_REF_NAME: $GITHUB_REF_NAME" echo "Tag name from github.ref_name: ${{ github.ref_name }}" - echo "Tag name from GITHUB_REF_TAG: ${{ GITHUB_REF_TAG }}" + echo "Tag name from GITHUB_REF_TAG: $GITHUB_REF_TAG" - name: Set up Python uses: actions/setup-python@v4