We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2ba971 commit e86a41aCopy full SHA for e86a41a
2 files changed
README.md
@@ -38,4 +38,4 @@
38
| `cloud-token` | Dagger Cloud Token | false | '' |
39
| `module` | Dagger module to call. Local or Git | false | '' |
40
| `args` | Arguments to pass to CLI | false | '' |
41
-
+| `engine-stop` | Whether to stop the Dagger Engine after this run | false | 'true' |
action.yml
@@ -29,6 +29,10 @@ inputs:
29
description: 'Arguments to pass to CLI'
30
required: false
31
default: ''
32
+ engine-stop:
33
+ description: 'Whether to stop the Dagger Engine after this run'
34
+ required: false
35
+ default: 'true'
36
runs:
37
using: "composite"
steps:
@@ -64,4 +68,4 @@ runs:
64
68
docker stop -t 300 "${containers[@]}";
65
69
fi
66
70
shell: bash
67
- if: ${{ always() }}
71
+ if: inputs.engine-stop == 'true'
0 commit comments