We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b234d48 commit 943c42bCopy full SHA for 943c42b
1 file changed
.github/workflows/release.yml
@@ -70,10 +70,11 @@ jobs:
70
mv "./bricks/$HUB/build/firmware.zip" "$NEW_FILENAME"
71
ASSETS="$ASSETS $NEW_FILENAME"
72
done
73
+ RELEASE_NOTES=$(awk "/^## \[${tag#v}\]/{found=1} found && /^## \[/ && printed{exit} found{printed=1; print}" CHANGELOG.md)
74
gh release create "$tag" \
75
--repo="$GITHUB_REPOSITORY" \
76
--title="${tag#v}" \
- -F CHANGELOG.md \
77
+ --notes "$RELEASE_NOTES" \
78
$PRERELEASE_FLAG \
79
$ASSETS
80
- name: Set up Node.js
0 commit comments