Skip to content

Commit fe9e95a

Browse files
authored
Fix publish workflow: changelog grep failure (#753)
1 parent c6ddb75 commit fe9e95a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish-hyperbridge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ jobs:
381381
COMMIT_RANGE="${PREVIOUS_TAG}..${CURRENT_TAG}"
382382
fi
383383
384-
CHANGELOG=$(git log --pretty=format:"* %s (%h)" $COMMIT_RANGE --reverse | grep -i "node")
384+
CHANGELOG=$(git log --pretty=format:"* %s (%h)" $COMMIT_RANGE --reverse | grep -i "node" || true)
385385
386386
echo "changelog<<EOF" >> $GITHUB_OUTPUT
387387
echo "## What's Changed" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)