ci(workflow): install Docker before Docker image build
Some checks failed
Build and Publish Docker Image / deploy (push) Failing after 56s

Replace the Docker availability check with an installation step in the
docker publish workflow. This ensures image builds can run on runners
where Docker is not preinstalled.ci(workflow): install Docker before Docker image build

Replace the Docker availability check with an installation step in the
docker publish workflow. This ensures image builds can run on runners
where Docker is not preinstalled.
This commit is contained in:
2026-04-15 19:57:11 +03:00
parent fef710005f
commit f21728e1ef

View File

@@ -25,8 +25,8 @@ jobs:
- name: Run Tests
run: go test ./...
- name: Verify Docker Availability
run: docker version
- name: Install Docker
run: curl -fsSL https://get.docker.com | sh
- name: Build Docker Image
run: |