File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -156,12 +156,12 @@ jobs:
156
156
for tag in $tags; do
157
157
docker tag ${{ needs.init.outputs.docker-image-name }}:${{ needs.init.outputs.github-ci-sha-short }} $tag
158
158
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
161
161
docker tag ${{ needs.init.outputs.docker-image-name-dev }}:${{ needs.init.outputs.github-ci-sha-short }} $tag
162
162
done
163
163
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
165
165
166
166
- name : Check Docker Image
167
167
run : |
You can’t perform that action at this time.
0 commit comments