diff --git a/.github/workflows/variablesTest.yml b/.github/workflows/variablesTest.yml index 3c44fa4..d9366e7 100644 --- a/.github/workflows/variablesTest.yml +++ b/.github/workflows/variablesTest.yml @@ -20,7 +20,7 @@ jobs: echo ${{ github.event_name }} - name: Check for DOCKER_IMAGE_TAG change - if: GITHUB_EVENT_NAME == 'pull_request' + if: $GITHUB_EVENT_NAME == 'pull_request' run: echo ":refs_heads_${GITHUB_HEAD_REF}-bk0" >> $env.DOCKER_IMAGE_TAG - name: Echo DOCKER_IMAGE_TAG again @@ -31,6 +31,6 @@ jobs: steps: - name: Checkout repository uses: actions/checkout@v3 - + - name: Echo DOCKER_IMAGE_TAG again run: echo ${{ env.DOCKER_IMAGE_TAG }} \ No newline at end of file