Hi all! The following commands are executed by CI....
# general
b
Hi all! The following commands are executed by CI. Is there a command that will display the list of docker_images to be published here without having to publish them?
Copy code
pants \
  --changed-since=origin/main \
  --changed-dependents=transitive \
  publish ::
1
g
We use a variant of this on CI to figure out what to publish:
Copy code
pants \
  --changed-since=origin/main \
  --changed-dependents=transitive \
  --filter-target-type=docker_image \
  list
b
Oh, that's great! thank you!