Skip to content

Commit 1dc8d3f

Browse files
authored
fix 4 (#54)
1 parent 4358c33 commit 1dc8d3f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
# Get the latest workflow run ID for the branch
5151
run_id=$(gh run list --branch $branch_name --workflow "Build Release" --limit 1 --json databaseId | jq -r '.[0].databaseId')
5252
53-
if [ -z "$run_id" ]; then
53+
if [ "$run_id" = "null" ]; then
5454
echo "No build workflow run found for branch $branch_name"
5555
else
5656
echo "Found build workflow run ID: $run_id"

0 commit comments

Comments
 (0)