From 75135253b9efea89dfa34b4891f9f5dd2403a203 Mon Sep 17 00:00:00 2001 From: Christian Herrera Date: Fri, 5 Jul 2024 18:16:48 -0600 Subject: [PATCH] fix tag --- .github/workflows/actions.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index b39df30..4d4277a 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -41,10 +41,10 @@ jobs: working-directory: api - name: Extract tag name id: tag - run: echo ::set-output name=v1.7.0 + run: echo ::set-output name=TAG_NAME::$(echo 1.7.0) - name: Update version in setup.py run: >- - echo "THIS IS THE VESION: ${{ steps.tag.outputs.TAG_NAME }}" + echo "THIS IS THE VERSION: ${{ steps.tag.outputs.TAG_NAME }}" sed -i "s/{{VERSION_PLACEHOLDER}}/${{ steps.tag.outputs.TAG_NAME }}/g" setup.py working-directory: api - name: Build a binary wheel