diff options
author | Erik Johnston <erik@matrix.org> | 2022-04-12 16:12:57 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-12 15:12:57 +0000 |
commit | ba1588461beadff7d5525d05308731ba286c425f (patch) | |
tree | b33d674ede46cf17c2d468dbfc9da39b232da4d4 | |
parent | Merge branch 'release-v1.57' into develop (diff) | |
download | synapse-ba1588461beadff7d5525d05308731ba286c425f.tar.xz |
Fix typos in release script docs (#12450)
-rw-r--r-- | changelog.d/12450.misc | 1 | ||||
-rwxr-xr-x | scripts-dev/release.py | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/changelog.d/12450.misc b/changelog.d/12450.misc new file mode 100644 index 0000000000..4b1c8cba87 --- /dev/null +++ b/changelog.d/12450.misc @@ -0,0 +1 @@ +Fix typo in the release script help string. diff --git a/scripts-dev/release.py b/scripts-dev/release.py index 685fa32b03..518eaf417c 100755 --- a/scripts-dev/release.py +++ b/scripts-dev/release.py @@ -69,11 +69,12 @@ def cli(): # ... wait for assets to build ... ./scripts-dev/release.py publish + ./scripts-dev/release.py upload # Optional: generate some nice links for the announcement - ./scripts-dev/release.py upload + ./scripts-dev/release.py announce If the env var GH_TOKEN (or GITHUB_TOKEN) is set, or passed into the `tag`/`publish` command, then a new draft release will be created/published. |