From 9b58ca7da3ac73369fc3978205a8b388c6c08fd9 Mon Sep 17 00:00:00 2001 From: Matthew Sandoval Date: Wed, 8 May 2024 12:58:28 -0700 Subject: [PATCH] Fix promote check (#1035) --- .github/workflows/promote.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/promote.yml b/.github/workflows/promote.yml index 6e16fd4ef..053bed367 100644 --- a/.github/workflows/promote.yml +++ b/.github/workflows/promote.yml @@ -35,7 +35,7 @@ jobs: run: echo RECEPTORCTL_PYPI_VERSION=$(curl --silent https://pypi.org/pypi/receptorctl/json | jq --raw-output '.info.version') >> $GITHUB_ENV - name: Build receptorctl and upload to pypi - if: ${{ env.RECEPTORCTL_PYPI_VERSION != env.TAG }} + if: ${{ 'v%{env.RECEPTORCTL_PYPI_VERSION}' != env.TAG }} run: | make receptorctl_wheel receptorctl_sdist VERSION=$TAG twine upload \