Skip to content

Commit

Permalink
Merge pull request #4 from chirag-ji/3-github-action-failure-on-multi…
Browse files Browse the repository at this point in the history
…-tags

appending tags in comma seperated list
  • Loading branch information
chirag-ji authored Nov 1, 2024
2 parents dec822f + 3cafa03 commit 58a01f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Fetch existing Docker image tags
id: get-tags
run: |
tags=$(curl -s "https://registry.hub.docker.com/v2/repositories/$DOCKER_REPO/tags?page_size=100" | jq -r '.results[].name')
tags=$(curl -s "https://registry.hub.docker.com/v2/repositories/$DOCKER_REPO/tags?page_size=100" | jq -r '.results[].name' | paste -sd "," -)
echo "Docker tags: $tags"
echo "tags=$tags" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 58a01f2

Please sign in to comment.