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 - name: Run Tests
run: go test ./... run: go test ./...
- name: Verify Docker Availability - name: Install Docker
run: docker version run: curl -fsSL https://get.docker.com | sh
- name: Build Docker Image - name: Build Docker Image
run: | run: |