mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 20:31:12 +00:00
9 lines
159 B
Bash
Executable file
9 lines
159 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
# Creating the new tag
|
|
new_tag="$1"
|
|
|
|
# Prepending to the RELEASES.md
|
|
git cliff --tag "$new_tag" --output RELEASES.md
|
|
prettier -w RELEASES.md
|