From ab6f173bc1afed4c10ab3fe71de06ed5fb9f4753 Mon Sep 17 00:00:00 2001 From: Zanie Date: Fri, 15 Sep 2023 14:55:37 -0500 Subject: [PATCH] Add tag ltieral --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a6646e32ef..f853134246 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -386,9 +386,9 @@ jobs: # Switch to the commit we want to release git checkout 0c030b5bf31e425cb6070db7386243eca6dbd8f1 version=$(grep "version = " pyproject.toml | sed -e 's/version = "\(.*\)"/\1/g') - if [ "${{ inputs.tag }}" != "${version}" ]; then + if [ "0.0.290" != "${version}" ]; then echo "The input tag does not match the version from pyproject.toml:" >&2 - echo "${{ inputs.tag }}" >&2 + echo "0.0.290" >&2 echo "${version}" >&2 exit 1 else