CI: install docker CLI in docker job (debian image lacks it)
CI / test (push) Successful in 19s
CI / docker (push) Failing after 30s

This commit is contained in:
2026-09-09 01:45:53 -05:00
parent 4f1e901f04
commit b1187e061f
+6
View File
@@ -36,6 +36,12 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install Docker CLI
run: |
apt-get update && apt-get install -y docker-cli || \
(curl -fsSL https://download.docker.com/linux/static/stable/x86_64/docker-27.3.1.tgz -o /tmp/docker.tgz \
&& tar -xzf /tmp/docker.tgz -C /tmp && mv /tmp/docker/docker /usr/local/bin/docker)
- name: Set up Buildx
uses: docker/setup-buildx-action@v3