Skip to content

Commit 055839e

Browse files
committed
Fix moby-latest.yml workflow
1 parent 1f38f0d commit 055839e

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/moby-latest.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Tests against recent Docker engine releases
22

33
on:
4+
workflow_dispatch:
45
schedule:
56
# nightly build, at 23:59 CEST
67
- cron: '59 23 * * *'
@@ -18,19 +19,19 @@ jobs:
1819
- uses: ./.github/actions/setup-build
1920

2021
- name: Install Stable Docker
21-
if: ${{ matrix.install-docker-type == "STABLE" }}
22+
if: ${{ matrix.install-docker-type == 'STABLE' }}
2223
run: curl https://get.docker.com
2324

2425
- name: Install Docker from the TEST channel
25-
if: ${{ matrix.install-docker-type == "ROOTFUL" }}
26+
if: ${{ matrix.install-docker-type == 'ROOTFUL' }}
2627
run: curl https://get.docker.com | CHANNEL=test sh
2728

2829
- name: Setup rootless Docker
29-
if: ${{ matrix.install-docker-type == "ROOTLESS" }}
30+
if: ${{ matrix.install-docker-type == 'ROOTLESS' }}
3031
uses: ScribeMD/rootless-docker@6bd157a512c2fafa4e0243a8aa87d964eb890886 # v0.2.2
3132

3233
- name: Remove Docker root socket
33-
if: ${{ matrix.install-docker-type == "ROOTLESS" }}
34+
if: ${{ matrix.install-docker-type == 'ROOTLESS' }}
3435
run: sudo rm -rf /var/run/docker.sock
3536

3637
- name: Check Docker version

0 commit comments

Comments
 (0)