fix(cicd): install Docker CLI via static binary instead of apt
Some checks failed
deploy / deploy-finance (push) Has been cancelled
deploy / test (push) Has been cancelled

This commit is contained in:
Gonçalo Rodrigues 2026-06-26 23:56:14 +01:00
parent 5657ec530a
commit 4d19c0981c

View File

@ -24,7 +24,9 @@ jobs:
- uses: actions/checkout@v4
- name: Install Docker CLI
run: apt-get update -qq && apt-get install -y -qq docker.io
run: |
curl -fsSL https://download.docker.com/linux/static/stable/aarch64/docker-27.3.1.tgz \
| tar xzf - --strip-components=1 -C /usr/local/bin docker/docker
- name: Login to Gitea registry
run: |