Skip to content

Commit 6a41a20

Browse files
committed
fix workflow
1 parent b06c791 commit 6a41a20

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ jobs:
110110

111111
- name: Export wheel from image
112112
run: |
113-
CONTAINER_TAG=${{ steps.meta.outputs.tags }} # Use the same tag here
113+
CONTAINER_TAG=$(echo "${{ steps.meta.outputs.tags }}" | head -n1)
114114
CONTAINER_ID=$(docker create $CONTAINER_TAG)
115115
# Copy wheel files from the container to the local machine
116116
docker cp "$CONTAINER_ID:/out" ./out

0 commit comments

Comments
 (0)