Skip to content

Commit

Permalink
fixed broken if condition
Browse files Browse the repository at this point in the history
  • Loading branch information
adwk67 committed Jan 10, 2025
1 parent 3456f26 commit 0887500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ jobs:
sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_arm64 -O /usr/bin/yq && sudo chmod +x /usr/bin/yq
fi
- name: Build Docker image and Helm chart - main-PR
if: ${{ github.event_name == 'pull_request' && github.ref != 'refs/heads/main' }}
if: ${{ github.event_name == 'pull_request' && github.ref == 'refs/heads/main' }}
env:
PR_NUMBER: ${{ github.event.pull_request.number }}
run: |
Expand Down

0 comments on commit 0887500

Please sign in to comment.