We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 50b24aa + fa85781 commit a89a962Copy full SHA for a89a962
.github/workflows/publish.yml
@@ -245,12 +245,12 @@ jobs:
245
246
- name: manifest-dockerhub
247
run: |
248
- for t in `echo '${{ steps.meta-dockerhub.outputs.tags }}'; do
+ for t in `echo '${{ steps.meta-dockerhub.outputs.tags }}'`; do
249
docker manifest create ${t} --amend ${t}-amd64 --amend ${t}-arm64v8
250
done
251
- name: manifest-dockerhub-tags
252
253
- for t in `echo '${{ steps.meta-dockerhub-tag.outputs.tags }}'; do
+ for t in `echo '${{ steps.meta-dockerhub-tag.outputs.tags }}'`; do
254
255
docker manifest create ${{ env.DOCKER_IMAGE_NAME }}:latest --amend ${t}-amd64 --amend ${t}-arm64v8
256
0 commit comments