Does `pants publish` respect dependencies the same...
# general
e
Does
pants publish
respect dependencies the same way
pants package
does? (ie. if I set my helm chart to depend on my docker containers, will pants publish the docker containers first and then the helm charts?) Or will they just package correctly and then its undefined for publish order. Main goal is that I don't want the new helm chart available in artifactory (where it will be pulled by argoCD) until the docker images it references are also available.
c
publish will only publish the targets you specify, not dependencies, if I recall it correctly.
e
thanks. I would assume that also implies that
pants publish ::
to publish everything will not necessarily publish them in dependency order either. Is that correct?