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 78d0de2 + 42e6d69 commit 1bbe7d3Copy full SHA for 1bbe7d3
Makefile
@@ -147,12 +147,13 @@ push-name:
147
@echo "pushed: $(IMAGE):$(TAG)"
148
149
# This depends on github.com/estesp/manifest-tool in $PATH.
150
-manifest-list: push
151
- manifest-tool \
152
- --username=oauth2accesstoken \
153
- --password=$$(gcloud auth print-access-token) \
154
- push from-args \
155
- --platforms "$(ALL_PLATFORMS)" \
+manifest-list: all-push
+ platforms=$$(echo $(ALL_PLATFORMS) | sed 's/ /,/g'); \
+ manifest-tool \
+ --username=oauth2accesstoken \
+ --password=$$(gcloud auth print-access-token) \
+ push from-args \
156
+ --platforms "$$platforms" \
157
--template $(REGISTRY)/$(BIN):$(VERSION)__OS_ARCH \
158
--target $(REGISTRY)/$(BIN):$(VERSION)
159
0 commit comments