From 2b64a4539566dd29ddbc1449d58a42bd1335147e Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 29 Mar 2024 08:22:43 -0400 Subject: [PATCH] fix: fixed the autotagger message variable causing errors --- .forgejo/workflows/autotagger.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.forgejo/workflows/autotagger.yaml b/.forgejo/workflows/autotagger.yaml index 5404a0c..14c57d7 100644 --- a/.forgejo/workflows/autotagger.yaml +++ b/.forgejo/workflows/autotagger.yaml @@ -31,8 +31,7 @@ jobs: git fetch --tags echo "::set-output name=latest_tag::$(git describe --tags `git rev-list --tags --max-count=1`)" echo "::set-output name=version::$(awk -F '=' '/^ *version/ {gsub(/[[:space:]"]/, "", $2); print $2}' pyproject.toml)" - MESSAGE=$(git log --format=%B -n 1 $GITHUB_SHA) - echo "::set-output name=message::$MESSAGE" + echo "::set-output name=message::$(echo "$(git log --format=%B -n 1 $GITHUB_SHA)")" - name: Compare version and latest tag id: compare