We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d35ab57 commit a1a5a48Copy full SHA for a1a5a48
doc/user_guide/how_to_release.rst
@@ -14,7 +14,7 @@ Creating a Release
14
15
.. code-block:: shell
16
17
- nox -s release:prepare -- <major>.<minor>.<patch>
+ nox -s release:prepare -- "${TAG}"
18
19
#. Merge your **Pull Request** to the **default branch**
20
#. Switch to the **default branch**:
@@ -55,13 +55,13 @@ The release failed during pre-release checks
55
56
57
58
- git tag -d x.y.z
+ git tag -d "${TAG}"
59
60
#. Delete the remote tag
61
62
63
64
- git push --delete origin x.y.z
+ git push --delete origin "${TAG}"
65
66
#. Fix the issue(s) which lead to the failing checks
67
#. Start the release process from the beginning
0 commit comments