Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix built image id output for subsequent builds #270

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Commits on Apr 5, 2024

  1. Fix built image id output for subsequent builds

    For the first `docker build` task in a job, DOCKER_TASK_BUILT_IMAGES is
    correct. But for subsequent builds, instead of appending the new image's
    hash it was duplicating the list, e.g.
    
    - after first build: firstBuildId
    - after second build: firstBuildId;firstBuildId
    - after third build: firstBuildId;firstBuildId;firstBuildId;firstBuildId
    - etc.
    
    Instead we append the new image hash, as was seemingly the original
    intention. So now:
    
    - after first build: firstBuildId
    - after second build: firstBuildId;secondBuildId
    - after third build: firstBuildId;secondBuildId;thirdBuildId
    - etc.
    philipfalkner committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    0904353 View commit details
    Browse the repository at this point in the history