Skip to content

Commit

Permalink
Merge pull request #23 from bithyve/main
Browse files Browse the repository at this point in the history
Fix signing
  • Loading branch information
ben-kaufman authored Sep 11, 2024
2 parents 956658b + 7938c66 commit 61a9baf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pgp-sign-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
echo "Version: $version"
releases=$(gh release list --limit 20 --json tagName,name,isDraft,isPrerelease)
releaseInfo=$(echo "$releases" | jq -r ".[] | select(.isDraft == true and .name | contains(\"$version\")) | .tagName" | head -n1)
releaseInfo=$(echo "$releases" | jq -r '.[] | select(.isDraft == true and (.tagName | contains("'"$version"'"))) | .tagName' | head -n1)
if [ -z "$releaseInfo" ]; then
echo "Error: Could not find a draft release for version $version"
Expand Down

0 comments on commit 61a9baf

Please sign in to comment.