Skip to content

Commit 476bcea

Browse files
committed
Update notarization-check workflow to simplify release tag retrieval by removing asset filtering
1 parent 17439b9 commit 476bcea

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/notarization-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
PENDING_FOUND=false
2626
2727
# Get recent releases (last 10)
28-
gh release list --limit 10 --json tagName,assets | jq -r '.[] | select(.assets | length > 0) | .tagName' > release_tags.txt
28+
gh release list --limit 10 --json tagName | jq -r '.[].tagName' > release_tags.txt
2929
3030
while IFS= read -r tag; do
3131
echo "Checking release: $tag"

0 commit comments

Comments
 (0)