From 19b78bc8b4201a986adb30e245a672ebfdfaf601 Mon Sep 17 00:00:00 2001 From: Ziga Cernigoj Date: Thu, 19 Oct 2023 13:56:45 +0200 Subject: [PATCH] print github tag in deploy-testing github action --- .github/workflows/deploy_testing.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/deploy_testing.yaml b/.github/workflows/deploy_testing.yaml index a3c8a259..fc365450 100644 --- a/.github/workflows/deploy_testing.yaml +++ b/.github/workflows/deploy_testing.yaml @@ -35,6 +35,12 @@ jobs: steps: - uses: actions/checkout@v4 + - name: GitHub Tag Name example + 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_name: ${{ env.GITHUB_REF_NAME }}" + - name: Set up Python uses: actions/setup-python@v4 with: