From 0f11c557523697019332b1096b91c6d2f1ce04b3 Mon Sep 17 00:00:00 2001 From: Daniel Haus Date: Tue, 23 Apr 2024 01:56:40 +0200 Subject: [PATCH] fix: fix update tag workflow --- .github/workflows/update-main-version.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update-main-version.yml b/.github/workflows/update-main-version.yml index fda51fa..73395a3 100644 --- a/.github/workflows/update-main-version.yml +++ b/.github/workflows/update-main-version.yml @@ -33,5 +33,5 @@ jobs: git config --global user.email ${{ secrets.RHACS_BOT_GITHUB_EMAIL }} git config --global user.name ${{ secrets.RHACS_BOT_GITHUB_USERNAME }} # Move the main version tag to the target tag. - git tag -s -f ${{ github.event.inputs.main_version }} ${{ github.event.inputs.target }} + git tag -m "" -s -f ${{ github.event.inputs.main_version }} ${{ github.event.inputs.target }} git push origin ${{ github.event.inputs.main_version }} --force --tags