From dbc7919efb7cefafac768ece559270622d44d619 Mon Sep 17 00:00:00 2001 From: James Busche Date: Wed, 3 Apr 2024 09:32:58 -0700 Subject: [PATCH] fix build workflow for version Signed-off-by: James Busche --- .github/workflows/build-and-publish.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-and-publish.yaml b/.github/workflows/build-and-publish.yaml index 0495d22f1..21e917ff5 100644 --- a/.github/workflows/build-and-publish.yaml +++ b/.github/workflows/build-and-publish.yaml @@ -37,7 +37,7 @@ jobs: python -m pip install -r setup_requirements.txt - name: Replace release-version with provided input value run: | - export RELEASE_VERSION={{ github.event.inputs.release-version }} + export RELEASE_VERSION=${{ github.event.inputs.release-version }} sed -i "s/^version = \"[0-9.]*\"$/version = \"${RELEASE_VERSION}\"/g" pyproject.toml - name: Build and test with tox run: tox -e py39