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

.github/workflows/push-master.yml

Lines changed: 1 addition & 1 deletion
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/checkout@v4.2.2

.github/workflows/upload-to-github-pages.yml

Lines changed: 1 addition & 1 deletion
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/checkout@v4.2.2

0 commit comments

Comments
 (0)