From 46dd141ba7301a965f6610f52b573d5ce14a3b89 Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Wed, 11 Dec 2024 18:16:55 +0100 Subject: [PATCH 1/2] RELEASING: fix stable tag removal --- RELEASING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RELEASING.md b/RELEASING.md index e6073455bf2..ae0ad84c545 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -51,8 +51,8 @@ ```bash git tag -d stable git tag stable - git push --delete origin tagname - git push origin stable + git push --delete origin stable + git push --tags origin stable ``` * ReadTheDocs will not automatically rebuild on tag changes, so manually kick-off a build of stable: https://readthedocs.org/projects/opentelemetry-python/builds/. From cd9895a6a3ec678c13039d30029c89d08896f87e Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Mon, 16 Dec 2024 18:41:02 +0100 Subject: [PATCH 2/2] Update RELEASING.md --- RELEASING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RELEASING.md b/RELEASING.md index ae0ad84c545..d92749f9c30 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -52,7 +52,7 @@ git tag -d stable git tag stable git push --delete origin stable - git push --tags origin stable + git push origin tag stable ``` * ReadTheDocs will not automatically rebuild on tag changes, so manually kick-off a build of stable: https://readthedocs.org/projects/opentelemetry-python/builds/.