commit
f3e4144589
2 changed files with 21 additions and 1 deletions
13
action.yml
13
action.yml
|
@ -22,6 +22,11 @@ inputs:
|
||||||
required: false
|
required: false
|
||||||
default: 0.11.5
|
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:
|
qlfile-template:
|
||||||
description: "Djula template for qlfile. All environment variables are available in it's context"
|
description: "Djula template for qlfile. All environment variables are available in it's context"
|
||||||
required: false
|
required: false
|
||||||
|
@ -363,7 +368,13 @@ runs:
|
||||||
shell: lispsh -eo pipefail {0}
|
shell: lispsh -eo pipefail {0}
|
||||||
run: |
|
run: |
|
||||||
echo ::group::Create Qlot Environment
|
echo ::group::Create Qlot Environment
|
||||||
qlot install
|
if [[ "${{ inputs.qlot-no-deps }}" != 'false' ]]; then
|
||||||
|
echo 'Running Qlot with --no-deps argument'
|
||||||
|
qlot install --no-deps
|
||||||
|
else
|
||||||
|
echo 'Running Qlot as usual'
|
||||||
|
qlot install
|
||||||
|
fi
|
||||||
echo ::endgroup::
|
echo ::endgroup::
|
||||||
env:
|
env:
|
||||||
QLFILE_TEMPLATE: ${{ inputs.qlfile-template }}
|
QLFILE_TEMPLATE: ${{ inputs.qlfile-template }}
|
||||||
|
|
|
@ -10,6 +10,15 @@
|
||||||
"CL"
|
"CL"
|
||||||
"HOME"))
|
"HOME"))
|
||||||
|
|
||||||
|
(4.1.0 2024-05-17
|
||||||
|
"
|
||||||
|
# Added
|
||||||
|
|
||||||
|
* Input argument qlot-no-deps was added.
|
||||||
|
|
||||||
|
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.")
|
||||||
(4.0.5 2024-04-19
|
(4.0.5 2024-04-19
|
||||||
"
|
"
|
||||||
# Fixed
|
# Fixed
|
||||||
|
|
Loading…
Reference in a new issue