Skip to content
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.

Commit

Permalink
fix: use single quotes in workflow if condition (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastiendan authored Jun 16, 2023
1 parent e7d9c42 commit 1922deb
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 1922deb

Please sign in to comment.