We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 36f3f68 + d678770 commit 72b5b59Copy full SHA for 72b5b59
.github/actions/docker-build-artifacts/action.yml
@@ -33,8 +33,21 @@ inputs:
33
runs:
34
using: "composite"
35
steps:
36
+ - name: Wait for Docker daemon
37
+ shell: bash
38
+ run: |
39
+ until docker info >/dev/null 2>&1; do
40
+ if [ $SECONDS -ge 60 ]; then
41
+ echo "Timeout waiting for Docker daemon"
42
+ exit 1
43
+ fi
44
+ sleep 1
45
+ done
46
+
47
- name: Set up QEMU for Docker
48
uses: docker/setup-qemu-action@v3
49
+ with:
50
+ cache-image: false
51
52
- name: Build Docker image
53
shell: bash
.github/workflows/ci-deb-packages-v2.yml
@@ -98,6 +98,8 @@ jobs:
98
99
- name: Set up QEMU
100
101
102
103
104
- name: Run custom bootstrap script
105
shell: sh
0 commit comments