From 4e59dd19417d4ca884159f24334948dab9d0c547 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Fri, 29 Mar 2024 08:01:30 -0400 Subject: [PATCH] fix: fixed another syntax error in autotagger --- .forgejo/workflows/autotagger.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/autotagger.yaml b/.forgejo/workflows/autotagger.yaml index 157263f..43d4acd 100644 --- a/.forgejo/workflows/autotagger.yaml +++ b/.forgejo/workflows/autotagger.yaml @@ -31,7 +31,7 @@ jobs: - name: Get new version id: get_version - run: ::set-output name=version::$(awk -F '=' '/^ *version/ {gsub(/[[:space:]]/, "", $2); print $2}' pyproject.toml) + run: echo "::set-output name=version::$(awk -F '=' '/^ *version/ {gsub(/[[:space:]]/, "", $2); print $2}' pyproject.toml)" - name: Get latest tag id: get_latest_tag