File tree Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Expand file tree Collapse file tree 1 file changed +15
-7
lines changed Original file line number Diff line number Diff line change @@ -363,19 +363,27 @@ final release.
363363
364364 Wait for the GitHub
365365 [Integration Tests workflow](https://github.com/commercialhaskell/stack/actions?query=workflow%3A%22Integration+tests%22)
366- to complete for the branch you just created. This will create a draft GitHub
366+ to complete for the tag you just created. This will create a draft GitHub
367367 release and upload the bindists (plus signatures and hashes) to it.
368368
369369 Edit the draft
370370 [GitHub release](https://github.com/commercialhaskell/stack/releases/):
371371
372- * Add the ChangeLog to the description.
373- * Get the list of contributors to the release and add it to the description.
374- For example, command:
372+ * Add the ChangeLog to the description.
373+ * Get the list of contributors to the release and add it to the
374+ description. For example, command:
375375
376- ~~~text
377- git shortlog -s origin/release..HEAD|sed $'s/^[0-9 \t]*/* /'|grep -v azure-pipelines|LC_ALL=C sort -f
378- ~~~
376+ === "Unix-like"
377+
378+ ~~~text
379+ git shortlog -s origin/release..HEAD|sed 's/^[0-9 \t]*/* /'|LC_ALL=C sort -f
380+ ~~~
381+
382+ === "Windows (with PowerShell)"
383+
384+ ~~~text
385+ (git shortlog -s origin/release..HEAD) -Replace '^[0-9 \t]*', '* ' | Sort-Object
386+ ~~~
379387
380388 Publish the GitHub release.
381389
You can’t perform that action at this time.
0 commit comments