From 70bacf24fe5431f6c3eec5cebf56346e8cb5db87 Mon Sep 17 00:00:00 2001 From: Jirka Borovec <6035284+Borda@users.noreply.github.com> Date: Mon, 5 Jun 2023 17:14:53 +0200 Subject: [PATCH] ci: fix passing install flags (#137) --- .github/actions/pkg-install/action.yml | 4 ++-- CHANGELOG.md | 5 +++++ 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/actions/pkg-install/action.yml b/.github/actions/pkg-install/action.yml index 782b66ba..e9c87012 100644 --- a/.github/actions/pkg-install/action.yml +++ b/.github/actions/pkg-install/action.yml @@ -32,7 +32,7 @@ runs: working-directory: pypi/ run: | # TODO: reset env / conside add as conda - pip install *.whl ${{ inputs.install-flags }} + pip install *.whl ${{ inputs.pip-flags }} python -c "import ${{ inputs.import-name }} as pkg; print(f'version: {pkg.__version__}')" pip list shell: bash @@ -47,7 +47,7 @@ runs: working-directory: pypi/ run: | # TODO: reset env / conside add as conda - pip install *.tar.gz ${{ inputs.install-flags }} + pip install *.tar.gz ${{ inputs.pip-flags }} python -c "import ${{ inputs.import-name }} as pkg; print(f'version: {pkg.__version__}')" pip list shell: bash diff --git a/CHANGELOG.md b/CHANGELOG.md index 771a3b15..d6352cd8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Added workflow for checking markdown links ([#81](https://github.com/Lightning-AI/utilities/pull/81)) +### Fixed + +- CI: fix passing install flags in package check ([#137](https://github.com/Lightning-AI/utilities/pull/137)) + + ## [0.7.1] - 2023-02-23 ### Added