We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aa67c93 + 22b2e98 commit dfc1528Copy full SHA for dfc1528
action.yaml
@@ -13,6 +13,9 @@ inputs:
13
log_dir:
14
description: 'Directory for logs'
15
default: '/tmp/devstack-logs'
16
+ enable_workaround_docker_io:
17
+ description: 'Enable or disable workaround for docker.io'
18
+ default: 'true'
19
runs:
20
using: "composite"
21
steps:
@@ -29,6 +32,7 @@ runs:
29
32
sudo apt-get install -y erlang rabbitmq-server || true
30
33
shell: bash
31
34
- name: Workaround for docker.io
35
+ if: ${{ inputs.enable_workaround_docker_io == 'true' }}
36
run: |
37
sudo apt-get install -y runc || true
38
0 commit comments