From ca7ac3d97d64d7afa7cba4ff8da7a579dba28a53 Mon Sep 17 00:00:00 2001 From: David Schultz Date: Tue, 28 Nov 2023 18:23:07 -0600 Subject: [PATCH] try harder to do bash --- .github/workflows/ci.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1e8e892..62b05e3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -44,8 +44,10 @@ jobs: if: ${{ startsWith( github.ref_name , 'v') }} id: tag run: | - export TAG="${{ github.ref_name }}" - echo "tag=${TAG:1}" >> "$GITHUB_OUTPUT" + TAG="${{ github.ref_name }}" + TAG2=${TAG:1} + echo "tag=$TAG2" + echo "tag=$TAG2" >> "$GITHUB_OUTPUT" - name: Build and push (Tag) if: ${{ startsWith( github.ref_name , 'v') }}