Skip to content

Commit

Permalink
fix if statement syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
bquan0 committed Aug 21, 2023
1 parent fc0dd22 commit 638ebf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/variablesTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

0 comments on commit 638ebf2

Please sign in to comment.