From 1eec6a9e2c9222beb0208882cdf37b04274115c7 Mon Sep 17 00:00:00 2001 From: Jonathan Johnson Date: Fri, 26 Jan 2024 14:15:51 -0800 Subject: [PATCH] Add v prefix back into tags We've always used this, let's keep doing that. --- .github/workflows/tag_version.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tag_version.yaml b/.github/workflows/tag_version.yaml index 7441dc305..53a23dd75 100644 --- a/.github/workflows/tag_version.yaml +++ b/.github/workflows/tag_version.yaml @@ -37,6 +37,6 @@ jobs: - name: Tag Version run: | git commit -a -m "${{env.new_tag}}" - git tag ${{env.new_tag}} -m "Tagging the ${{env.new_tag}} ${{ github.event.inputs.releaseType }} release" + git tag v${{env.new_tag}} -m "Tagging the v${{env.new_tag}} ${{ github.event.inputs.releaseType }} release" - name: Push Changes run: git push --follow-tags