ci(workflow): simplify docker buildx installation
Some checks failed
build-and-push / docker (push) Failing after 6s
build-and-push / lint (push) Successful in 8s
build-and-push / sonar (push) Successful in 20s

Replace separate `docker buildx install` step with installing `docker-buildx` package directly via apk, streamlining the Docker Buildx setup in the CI workflow.
This commit is contained in:
nocci 2026-03-07 14:07:31 +00:00
parent 74d2e92b8d
commit ea627ab703

View file

@ -118,8 +118,7 @@ jobs:
- name: Set up Docker Buildx
run: |
apk add --no-cache docker-cli docker-cli-compose
docker buildx install
apk add --no-cache docker-cli docker-cli-compose docker-buildx
- name: Login to registry
run: echo "${{ secrets.REG_TOKEN }}" | docker login "${{ secrets.REGISTRY }}" -u "${{ secrets.REG_USER }}" --password-stdin