From 96244793155ad2b3aaa068c1ac06ce4a5b8c8bfa Mon Sep 17 00:00:00 2001 From: tdruez Date: Fri, 8 Dec 2023 11:30:43 +0400 Subject: [PATCH] Simplified way to set the VERSION for tagging Signed-off-by: tdruez --- README.rst | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index 91e1bf3..10e8a1c 100644 --- a/README.rst +++ b/README.rst @@ -117,8 +117,9 @@ Make a new release - Tag and push that tag. This triggers the pypi-release.yml workflow that takes care of building the dist release files and upload those to pypi:: - git tag -a vx.x.x -m "Tag vx.x.x" - git push origin vx.x.x + VERSION=v0.x.x + git tag -a $VERSION -m "Tag $VERSION" + git push origin $VERSION - Review and publish the "draft" release created by the workflow at https://github.com/package-url/packageurl-python/releases