fix(release): add --build to create-release compose run #104
Loading…
Reference in a new issue
No description provided.
Delete branch "fix/VA-102-create-release-build-flag"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The create-release recipe ran
docker compose run --rm build cargo updatewithout--build, so compose attempted to pull the local-onlydev-vervain-agent-builderimage and printed a spurious "pull access denied" warning before falling back to a Dockerfile build. Adding--buildskips the auto-pull attempt, matching every other compose-run check recipe.Invariant sweep of
{{ compose }}runacross the justfile found three other bare sites missing the flag against the same registry-prefix-less image: build-release, shell, and fmt (fmt was not named in the issue). All four now pass--build; no barerunsite remains.Signed-off-by: David Randall David@NiceGuyIT.biz
#VA-102
The create-release recipe ran `docker compose run --rm build cargo update` without `--build`, so compose attempted to pull the local-only `dev-vervain-agent-builder` image and printed a spurious "pull access denied" warning before falling back to a Dockerfile build. Adding `--build` skips the auto-pull attempt, matching every other compose-run check recipe. Invariant sweep of `{{ compose }}run` across the justfile found three other bare sites missing the flag against the same registry-prefix-less image: build-release, shell, and fmt (fmt was not named in the issue). All four now pass `--build`; no bare `run` site remains. Signed-off-by: David Randall <David@NiceGuyIT.biz> #VA-102