fix: add --no-cache to docker builds to prevent stale images
Some checks failed
CI / test (push) Failing after 2m7s
CI / release (push) Has been skipped
CI / docker (push) Has been skipped

Docker layer caching on the runner was reusing old layers even
when source code changed, resulting in images with outdated code.
This commit is contained in:
Stefano Bertelli 2026-03-30 23:35:44 -05:00
parent a8784eec9c
commit c9ef58a244

View file

@ -214,7 +214,7 @@ jobs:
-u "${{ github.repository_owner }}" --password-stdin
# Build the image
docker build \
docker build --no-cache \
--build-arg "VERSION=${VERSION}" \
-t "${IMAGE}:${TAG}" \
-t "${IMAGE}:${MAJOR}.${MINOR}" \