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.
1 parent 5aff438 commit 9a0db35Copy full SHA for 9a0db35
lib/main.js
@@ -82,13 +82,20 @@ function run() {
82
yield execShellCommand(cmd);
83
}
84
85
+ // Support local runner https://github.com/nektos/act
86
+ if (process.env.ACT) {
87
+ cmd = `sudo chown runner:docker /var/run/docker.sock`;
88
+ console.log(cmd);
89
+ yield execShellCommand(cmd);
90
+ }
91
+
92
cmd = 'ddev --version';
93
console.log(cmd);
94
95
cmd = 'ddev config global --instrumentation-opt-in=false --omit-containers=ddev-ssh-agent';
96
97
- if(autostart){
98
+ if (autostart){
99
if (ddevDir != '.') {
100
cmd = 'cd ' + ddevDir + ' && ddev start';
101
} else {
0 commit comments