From 099e25bba67f1570fc34e48734e8c790a01ac635 Mon Sep 17 00:00:00 2001 From: Sami Virpioja Date: Wed, 11 Oct 2023 18:46:10 +0300 Subject: [PATCH] fix check-tag condition in github workflow --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a0e3d44..452610e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,7 +52,7 @@ jobs: id: check-tag run: | if [[ ${{ github.event.ref }} =~ ^refs/tags/[0-9]+\.[0-9]+\.[0-9]+(rc[0-9]*)?$ ]]; then - echo "{match}={true}" >> $GITHUB_OUTPUT + echo "match=true" >> $GITHUB_OUTPUT fi - name: Set up Python 3.7 if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')