Skip to content

Commit

Permalink
use isee source in isee ci install-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
andeaseme committed Oct 24, 2023
1 parent 25aa0b5 commit c281b7b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions actions/install-packages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,15 @@ runs:
if: ${{ inputs.pypi-packages }}
shell: bash
run: |
python -m pip install --upgrade pip wheel
pip install ${{ inputs.pypi-packages }}
if [ "${{ inputs.pypi-packages }}" == "isee" && "${{ github.repository }}" == "i2mint/isee" ]; then
echo "Installing isee from source"
python setup.py sdist
pip install $(find dist/ -iname isee-*.tar.gz)
isee_installed=true
else
python -m pip install --upgrade pip wheel
pip install ${{ inputs.pypi-packages }}
fi
- name: Install APT Packages
if: ${{ inputs.apt-packages }}
Expand Down

0 comments on commit c281b7b

Please sign in to comment.