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 e59dc3b commit c57f60bCopy full SHA for c57f60b
1 file changed
Makefile
@@ -20,4 +20,18 @@ update:
20
git push; \
21
git tag v$$VERSION; \
22
git push origin v$$VERSION; \
23
- echo "✓ Released v$$VERSION — GitHub Actions is building now."
+ echo ""; \
24
+ echo "✓ Released v$$VERSION — GitHub Actions is building now."; \
25
26
+ printf "📝 Release notes (اكتب، Enter مرتين للإنهاء):\n> "; \
27
+ NOTES=""; \
28
+ while IFS= read -r line; do \
29
+ [ -z "$$line" ] && break; \
30
+ NOTES="$$NOTES$$line\n"; \
31
+ done; \
32
+ if [ -n "$$NOTES" ]; then \
33
+ gh release edit "v$$VERSION" --notes "$$( printf "$$NOTES" )"; \
34
+ echo "✓ Release notes updated."; \
35
+ else \
36
+ echo "— No notes added."; \
37
+ fi
0 commit comments