Skip to content

Commit b5875a4

Browse files
committed
Fix WF
1 parent b535fe4 commit b5875a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/docker-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -156,12 +156,12 @@ jobs:
156156
for tag in $tags; do
157157
docker tag ${{ needs.init.outputs.docker-image-name }}:${{ needs.init.outputs.github-ci-sha-short }} $tag
158158
done
159-
tags-dev=$(echo "${{ needs.init.outputs.docker-image-tags-dev }}" | tr "\n" " ")
160-
for tag in $tags-dev; do
159+
tagsdev=$(echo "${{ needs.init.outputs.docker-image-tags-dev }}" | tr "\n" " ")
160+
for tag in $tagsdev; do
161161
docker tag ${{ needs.init.outputs.docker-image-name-dev }}:${{ needs.init.outputs.github-ci-sha-short }} $tag
162162
done
163163
docker save --output /tmp/myimage.tar $tags
164-
docker save --output /tmp/myimage-dev.tar $tags-dev
164+
docker save --output /tmp/myimage-dev.tar $tagsdev
165165
166166
- name: Check Docker Image
167167
run: |

0 commit comments

Comments
 (0)