Merge pull request #297 from calcom/fix/push-all-tags-to-dockerhub

Push all tags not just first one in build & push workflow
This commit is contained in:
Colin Griffin
2023-10-15 09:18:23 -04:00
committed by GitHub

View File

@@ -168,9 +168,9 @@ jobs:
run: |
tags="${{ steps.meta.outputs.tags }}"
IFS=',' read -ra ADDR <<< "$tags" # Convert string to array using ',' as delimiter
tag=${ADDR[0]} # Get the first tag
for tag in "${ADDR[@]}"; do
docker push $tag
done
- name: Cleanup