Skip to content

Commit

Permalink
fix: use single quotes in workflow if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan committed Jun 16, 2023
1 parent e7d9c42 commit a1b116a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker_build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: ./.github/workflows/docker_utils.yml
e2e:
needs: docker
if: ${{ github.event_name == "pull_request" }}
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-latest-16-core
steps:
- name: Set environment
Expand Down

0 comments on commit a1b116a

Please sign in to comment.