diff --git a/.forgejo/workflows/autotagger.yaml b/.forgejo/workflows/autotagger.yaml index b00dda8..e5bce92 100644 --- a/.forgejo/workflows/autotagger.yaml +++ b/.forgejo/workflows/autotagger.yaml @@ -30,7 +30,7 @@ jobs: run: | 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)" + echo "::set-output name=version::$(awk -F '=' '/^ *version/ {gsub(/[[:space:]"]/, "", $2); print $2}' pyproject.toml)" echo "::set-output name=message::$(git log --format=%B -n 1 $GITHUB_SHA)" - name: Compare version and latest tag