Skip to content

Commit

Permalink
check
Browse files Browse the repository at this point in the history
  • Loading branch information
sayakpaul committed Mar 4, 2024
1 parent f7aa3b9 commit 4fc2961
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_docker_images.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ env:
jobs:
test-build-docker-images:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
if: ${{ github.event_name == 'pull_request' }}
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

build-and-push-docker-images:
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
if: ${{ github.event_name != 'pull_request' }}

permissions:
contents: read
Expand Down

0 comments on commit 4fc2961

Please sign in to comment.