Skip to content

Commit

Permalink
Fix check that is run before signing
Browse files Browse the repository at this point in the history
  • Loading branch information
TheAssassin committed May 7, 2024
1 parent 268e725 commit 47b6655
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
env:
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
# skip signing if secret is not available (e.g., if run from a PR made by somebody outside of this repository)
if: ${{ env.SIGNING_KEY == '' }}
if: ${{ env.SIGNING_KEY != '' }}
run: |
./sign.sh out/runtime-*
# copy pubkey so that it's included with the files uploaded to the release page
Expand Down

0 comments on commit 47b6655

Please sign in to comment.