From 1a263d6ce645dd3223e6253c330520509f369ebe Mon Sep 17 00:00:00 2001 From: Ziga Cernigoj Date: Thu, 19 Oct 2023 13:24:47 +0200 Subject: [PATCH] use exact git tag name instead of the whole ref string 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 d4c454b2..a3c8a259 100644 --- a/.github/workflows/deploy_testing.yaml +++ b/.github/workflows/deploy_testing.yaml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest env: - GITHUB_REF_TAG: ${{ github.ref }} + GITHUB_REF_TAG: ${{ github.ref_name }} DEPLOYMENT_NAME: "testing-docker" TESTINGDATA_AWS_ACCESS_KEY_ID: ${{ secrets.TESTINGDATA_AWS_ACCESS_KEY_ID }} TESTINGDATA_AWS_SECRET_ACCESS_KEY: ${{ secrets.TESTINGDATA_AWS_SECRET_ACCESS_KEY }}