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:
@@ -168,9 +168,9 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
tags="${{ steps.meta.outputs.tags }}"
|
tags="${{ steps.meta.outputs.tags }}"
|
||||||
IFS=',' read -ra ADDR <<< "$tags" # Convert string to array using ',' as delimiter
|
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
|
||||||
docker push $tag
|
done
|
||||||
|
|
||||||
|
|
||||||
- name: Cleanup
|
- name: Cleanup
|
||||||
|
|||||||
Reference in New Issue
Block a user