File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -188,12 +188,12 @@ jobs:
188188 - name : Create manifest list and push
189189 run : |
190190 # Aggregate all tags from the meta files
191- TAGS=$(jq -r '.target."docker-metadata-action".tags[]' /tmp/meta/ bake-meta-*.json | sort -u)
191+ TAGS=$(jq -r '.target."docker-metadata-action".tags[]' /tmp/bake-meta-*.json | sort -u)
192192
193193 # Loop through each tag and create a manifest list
194194 for TAG in $TAGS; do
195195 FULL_TAGS=()
196- for FILE in /tmp/meta/ bake-meta-*.json; do
196+ for FILE in /tmp/bake-meta-*.json; do
197197 if jq -e --arg TAG "$TAG" '.target."docker-metadata-action".tags[] | select(. == $TAG)' $FILE > /dev/null; then
198198 # Extract the repository and digest for the current platform
199199 REPO=$(jq -r --arg TAG "$TAG" '.target."docker-metadata-action".tags[] | select(. == $TAG)' $FILE | cut -d':' -f1)
You can’t perform that action at this time.
0 commit comments