From 2d80976a5fb8200cbafebf855705910e34b1de7a Mon Sep 17 00:00:00 2001 From: Sukaato Date: Tue, 13 Aug 2024 23:09:36 +0200 Subject: [PATCH] ci(actions): fix git tag release --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index a3e6de5..5b20996 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -87,6 +87,6 @@ jobs: - name: Commit & Tag run: | git push - git tag $version - git push origin $version + git tag v$version + git push origin tag v$version