Input argument qlot-no-deps was added.
It makes Qlot to ignore asd files and their dependencies. This this might be useful in rare cases when your project contains a non-readable asd files such as templates.
This commit is contained in:
parent
1e6a66be39
commit
976b3e5419
1 changed files with 10 additions and 1 deletions
11
action.yml
11
action.yml
|
@ -22,6 +22,11 @@ inputs:
|
|||
required: false
|
||||
default: 0.11.5
|
||||
|
||||
qlot-no-deps:
|
||||
description: 'Make Qlot ignore asd files and their dependencies. This this might be useful in rare cases when your project contains a non-readable asd files such as templates.'
|
||||
required: false
|
||||
default: false
|
||||
|
||||
qlfile-template:
|
||||
description: "Djula template for qlfile. All environment variables are available in it's context"
|
||||
required: false
|
||||
|
@ -363,7 +368,11 @@ runs:
|
|||
shell: lispsh -eo pipefail {0}
|
||||
run: |
|
||||
echo ::group::Create Qlot Environment
|
||||
qlot install
|
||||
if [[ "${{ inputs.qlot-no-deps }}" != 'false' ]]; then
|
||||
qlot install
|
||||
else
|
||||
qlot install --no-deps
|
||||
fi
|
||||
echo ::endgroup::
|
||||
env:
|
||||
QLFILE_TEMPLATE: ${{ inputs.qlfile-template }}
|
||||
|
|
Loading…
Reference in a new issue