Skip to content

Commit

Permalink
Try again listing with explicit bash
Browse files Browse the repository at this point in the history
  • Loading branch information
almahmoud authored Dec 20, 2024
1 parent 4c8ce0f commit 18c65fb
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build_containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -235,9 +235,10 @@ jobs:
type=raw,value={{branch}}
- name: Create manifest list and push
shell: bash
run: |
# Prepare tags
TAGS=$(echo '${{ steps.meta2.outputs.tags }}' | tr '\n' ' ' | sed 's/ *$//')
TAGS=$(printf "%s" '${{ steps.meta2.outputs.tags }}' | tr '\n' ' ' | sed 's/ *$//')
TAG_ARGS=""
for tag in $TAGS; do
TAG_ARGS="$TAG_ARGS -t $tag"
Expand Down

0 comments on commit 18c65fb

Please sign in to comment.