mirror of
https://github.com/dagger/dagger-for-github.git
synced 2025-12-31 20:59:43 +11:00
Add option to not kill Engine
Signed-off-by: Jeremy Adams <jeremy@dagger.io>
This commit is contained in:
parent
c2ba97152a
commit
e86a41a730
2 changed files with 6 additions and 2 deletions
|
|
@ -29,6 +29,10 @@ inputs:
|
|||
description: 'Arguments to pass to CLI'
|
||||
required: false
|
||||
default: ''
|
||||
engine-stop:
|
||||
description: 'Whether to stop the Dagger Engine after this run'
|
||||
required: false
|
||||
default: 'true'
|
||||
runs:
|
||||
using: "composite"
|
||||
steps:
|
||||
|
|
@ -64,4 +68,4 @@ runs:
|
|||
docker stop -t 300 "${containers[@]}";
|
||||
fi
|
||||
shell: bash
|
||||
if: ${{ always() }}
|
||||
if: inputs.engine-stop == 'true'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue