Skip to content

Commit

Permalink
actions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
amancevice committed Oct 14, 2023
1 parent 0070f77 commit 8160930
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
- uses: docker/build-push-action@v5
with:
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
tags: |
${{ steps.meta.outputs.tags }}

0 comments on commit 8160930

Please sign in to comment.