We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec24f1f commit aa7eb78Copy full SHA for aa7eb78
.github/workflows/reusable-release-workflow.yml
@@ -543,8 +543,10 @@ jobs:
543
run: |
544
ls -lha ./artifacts
545
for file in ./artifacts/*; do
546
- echo "Will sign $file with key ${{ env.SIGNING_KEY }}..."
547
- gpg --default-key "${{ env.SIGNING_KEY }}" --detach-sign --armor "$file"
+ if test -f "$file"; then
+ echo "Will sign $file with key ${{ env.SIGNING_KEY }}..."
548
+ gpg --default-key "${{ env.SIGNING_KEY }}" --detach-sign --armor "$file"
549
+ fi
550
done
551
552
- name: Create a GitHub release with a pre-computed version
0 commit comments