From ac09361c014f72b56254ae1bf2a1e109ea0a1ed2 Mon Sep 17 00:00:00 2001 From: Alexander01998 Date: Wed, 20 Nov 2024 16:26:25 +0100 Subject: [PATCH] Fix missing v in auto-generated tag name --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8c38cf5..5aa3ade 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -61,8 +61,8 @@ jobs: MOD_VERSION=$(grep "mod_version" gradle.properties | cut -d'=' -f2 | tr -d ' ') git config --global user.name "Wurst-Bot" git config --global user.email "contact.wurstimperium@gmail.com" - git tag $MOD_VERSION - git push origin $MOD_VERSION + git tag v$MOD_VERSION + git push origin v$MOD_VERSION - name: Close milestone if: ${{ inputs.close_milestone }}