From 5f72e919356ebacafeb521a9caa318342911e248 Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 18 Nov 2019 23:45:58 -0400 Subject: [PATCH] Update release steps Signed-off-by: Roberto Rosario --- docs/chapters/development.rst | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/docs/chapters/development.rst b/docs/chapters/development.rst index f9ec75c8fe..c5cb508b5b 100644 --- a/docs/chapters/development.rst +++ b/docs/chapters/development.rst @@ -530,6 +530,17 @@ Release checklist Release using GitLab CI ----------------------- +#. Push the current brach: + :: + + git push + +#. Push the new tags: + :: + + git push --tags + + #. Delete the corresponding ``releases/`` branch: :: @@ -541,12 +552,6 @@ Release using GitLab CI git push origin :releases/ -#. Push the new tags: - :: - - git push --tags - - Manual release --------------