From 273942a5a54aa1e68b4be48713d8de9d2c48bd24 Mon Sep 17 00:00:00 2001 From: Stephen Rosen Date: Wed, 30 Aug 2023 16:26:53 -0500 Subject: [PATCH] Fix the release creation command `--notes -` makes `"-"` the content. `--notes-file -` reads from stdin. --- RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index 79498c2f0..d94933ce9 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -53,5 +53,5 @@ Generate the release body by running or create the release via the GitHub CLI ``` ./scripts/changelog2md.py | \ - gh release create $SDK_VERSION --title "v$SDK_VERSION" --notes - + gh release create $SDK_VERSION --title "v$SDK_VERSION" --notes-file - ```