Skip to content

Commit

Permalink
fixing missing double quotes from github actions file.
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenMiracle committed Jun 3, 2024
1 parent 62beed1 commit dbaaef0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/php-8_2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
if: !contains(github.ref , 'main')
if: "!contains(github.ref , 'main')"
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/php-8_3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Build and push Docker image
id: build-and-push
uses: docker/build-push-action@0565240e2d4ab88bba5387d719585280857ece09 # v5.0.0
if: !contains(github.ref , 'main')
if: "!contains(github.ref , 'main')"
with:
context: .
push: ${{ github.event_name != 'pull_request' }}
Expand Down

0 comments on commit dbaaef0

Please sign in to comment.