Skip to content

Commit 90f38b1

Browse files
committed
Retrying docker
1 parent a9b5161 commit 90f38b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: .github/workflows/push-master.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ jobs:
8282
- name: Wake-up docker
8383
if: matrix.runner == 'ubuntu-24.04-arm'
8484
run: |
85-
sudo systemctl start docker
85+
(sudo systemctl start docker) || (echo "Retrying docker" && sleep 5 && sudo systemctl start docker)
8686
8787
# checkout
8888
- uses: actions/[email protected]

Diff for: .github/workflows/upload-to-github-pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
- name: Wake-up docker
8080
if: matrix.runner == 'ubuntu-24.04-arm'
8181
run: |
82-
sudo systemctl start docker
82+
(sudo systemctl start docker) || (echo "Retrying docker" && sleep 5 && sudo systemctl start docker)
8383
8484
# checkout
8585
- uses: actions/[email protected]

0 commit comments

Comments
 (0)