diff options
author | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-05 02:15:57 +0900 |
---|---|---|
committer | Takeshi KOMIYA <i.tkomiya@gmail.com> | 2020-11-05 02:17:54 +0900 |
commit | 658f7379702a6ca23f58e97f6e88820e35d45bbf (patch) | |
tree | ae68e8567e1ed5f0a52f3fcba641d462a8c93baa /utils | |
parent | daff5066c6ef76c7c947821e2e20d5c37caa4a0f (diff) | |
download | sphinx-git-658f7379702a6ca23f58e97f6e88820e35d45bbf.tar.gz |
Check GitHub Actions before packaging
Diffstat (limited to 'utils')
-rw-r--r-- | utils/release-checklist | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/release-checklist b/utils/release-checklist index 582d26685..dad83c850 100644 --- a/utils/release-checklist +++ b/utils/release-checklist @@ -4,7 +4,7 @@ Release checklist for stable releases ------------------- -* open https://travis-ci.org/sphinx-doc/sphinx/branches and check **X.Y** branch is green +* open https://github.com/sphinx-doc/sphinx/actions?query=branch:X.Y.x and all tests has passed * Run ``git fetch; git status`` and check nothing changed * ``python utils/bump_version.py X.Y.Z`` * Check diff by ``git diff`` @@ -28,7 +28,7 @@ for stable releases for first beta releases ----------------------- -* open https://travis-ci.org/sphinx-doc/sphinx/branches and check **master** branch is green +* open https://github.com/sphinx-doc/sphinx/actions?query=branch:master and all tests has passed * Run ``git fetch; git status`` and check nothing changed * Run ``python setup.py extract_messages`` * Run ``(cd sphinx/locale; tx push -s)`` @@ -58,7 +58,7 @@ for first beta releases for other beta releases ----------------------- -* open https://travis-ci.org/sphinx-doc/sphinx/branches and check **X.Y** branch is green +* open https://github.com/sphinx-doc/sphinx/actions?query=branch:X.x and all tests has passed * Run ``git fetch; git status`` and check nothing changed * ``python utils/bump_version.py X.Y.0bN`` * Check diff by ``git diff`` @@ -81,7 +81,7 @@ for other beta releases for major releases ------------------ -* open https://travis-ci.org/sphinx-doc/sphinx/branches and check **X.Y** branch is green +* open https://github.com/sphinx-doc/sphinx/actions?query=branch:X.x and all tests has passed * Run ``git fetch; git status`` and check nothing changed * Run ``(cd sphinx/locale; tx pull -a -f)`` * Run ``python setup.py compile_catalog`` |