Skip to content

Commit d6b85b0

Browse files
committed
ci: allow push on release
1 parent 2561b2e commit d6b85b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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)

0 commit comments

Comments
 (0)