From f354080ba913e940edbdd348b8de1c5be645d7f3 Mon Sep 17 00:00:00 2001 From: tuntoja <58987095+tuntoja@users.noreply.github.com> Date: Fri, 7 Feb 2025 11:42:20 +0100 Subject: [PATCH] fix(release): use new version scheme for plugin release tags (#5436) --- .github/workflows/plugins.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/plugins.yml b/.github/workflows/plugins.yml index ffd95be3e..6c4d37f24 100644 --- a/.github/workflows/plugins.yml +++ b/.github/workflows/plugins.yml @@ -439,7 +439,7 @@ jobs: - name: Push git release tag run: | - RELEASE=plugins-$(date '+%Y%m%d') + RELEASE=plugins-${{ needs.get-environment.outputs.version }} EXISTING_TAG=$(git tag --list "$RELEASE" | head -n 1)