From dd75866180d2ab197639af4e647fb4964affda35 Mon Sep 17 00:00:00 2001 From: Alexander Date: Sat, 14 Oct 2023 08:42:48 -0400 Subject: [PATCH] actions fix --- .github/workflows/push.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 17e0c0ef..fcc37bac 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -25,11 +25,12 @@ jobs: - name: meta id: meta run: | - version="$(jq -r '.default."apache-superset".version' Pipfile.lock | grep -Eo '[0-9.]+')" + version="$(grep apache-superset Pipfile | grep -Eo '[0-9.]+')" tags="amancevice/superset,amancevice/superset:$version" - echo "tags=$tags" >> $GITHUB_OUTPUTS + echo "tags=$tags" >> "$GITHUB_OUTPUT" - uses: docker/build-push-action@v5 with: platforms: linux/amd64 push: true - tags: ${{ steps.meta.outputs.tags }} + tags: | + ${{ steps.meta.outputs.tags }}