Add more logging.

This commit is contained in:
Alexander Artemenko 2024-05-18 00:21:32 +03:00
parent e14ce570fc
commit fe2e6f885e

View file

@ -369,8 +369,10 @@ runs:
run: | run: |
echo ::group::Create Qlot Environment echo ::group::Create Qlot Environment
if [[ "${{ inputs.qlot-no-deps }}" != 'false' ]]; then if [[ "${{ inputs.qlot-no-deps }}" != 'false' ]]; then
echo 'Running Qlot as usual'
qlot install qlot install
else else
echo 'Running Qlot with --no-deps argument'
qlot install --no-deps qlot install --no-deps
fi fi
echo ::endgroup:: echo ::endgroup::