Skip to content

Commit

Permalink
Merge pull request #2088 from pi-hole/fix/fork_building
Browse files Browse the repository at this point in the history
Fix Github Actions if statement
  • Loading branch information
DL6ER authored Oct 18, 2024
2 parents 908d207 + 35cdf0f commit 13ba051
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/build-and-test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ runs:
# - this is a triggered by a PR event (we only push on commit to branch
# events)
# - no SSH key is provided (this is a PR from a fork)
if: inputs.event_name != 'pull_request' && ${{ inputs.SSH_KEY != '' }}
if: inputs.event_name != 'pull_request' && inputs.SSH_KEY != ''
uses: ./.github/actions/deploy
with:
pattern: ${{ inputs.bin_name }}-binary
Expand Down

0 comments on commit 13ba051

Please sign in to comment.