Skip to content

Commit 47b6655

Browse files
committed
Fix check that is run before signing
1 parent 268e725 commit 47b6655

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
env:
5757
SIGNING_KEY: ${{ secrets.SIGNING_KEY }}
5858
# skip signing if secret is not available (e.g., if run from a PR made by somebody outside of this repository)
59-
if: ${{ env.SIGNING_KEY == '' }}
59+
if: ${{ env.SIGNING_KEY != '' }}
6060
run: |
6161
./sign.sh out/runtime-*
6262
# copy pubkey so that it's included with the files uploaded to the release page

0 commit comments

Comments
 (0)