fix: manually install docker buildx plugin
Some checks failed
build-and-push / sonar (push) Successful in 20s
build-and-push / docker (push) Failing after 6s
build-and-push / lint (push) Successful in 8s

This commit is contained in:
nocci 2026-03-07 14:09:05 +00:00
parent ea627ab703
commit 618106c2f7

View file

@ -118,7 +118,10 @@ jobs:
- name: Set up Docker Buildx
run: |
apk add --no-cache docker-cli docker-cli-compose docker-buildx
apk add --no-cache docker-cli docker-cli-compose
mkdir -p ~/.docker/cli-plugins
curl -SL https://github.com/docker/buildx/releases/download/v0.14.1/buildx-v0.14.1.linux-amd64 -o ~/.docker/cli-plugins/docker-buildx
chmod +x ~/.docker/cli-plugins/docker-buildx
- name: Login to registry
run: echo "${{ secrets.REG_TOKEN }}" | docker login "${{ secrets.REGISTRY }}" -u "${{ secrets.REG_USER }}" --password-stdin