We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f8f412 commit e93efcdCopy full SHA for e93efcd
1 file changed
.github/workflows/build-python-release.reusable.yaml
@@ -158,8 +158,9 @@ jobs:
158
cd ../python-license-test
159
uv init --bare --python 3.10
160
uv add pip-licenses-cli
161
- uv pip install ../engine/language_client_python/dist/*.whl
162
- uv pip-licenses | tee license-audit.log
+ ls ../engine/language_client_python/dist/
+ uv pip install $(ls ../engine/language_client_python/dist/*.whl)
163
+ uv run pip-licenses | tee license-audit.log
164
165
# Due to `set -e`, this will fail if no matches are found
166
grep 'baml.*Apache-2.0' license-audit.log
0 commit comments