Skip to content

Commit

Permalink
update actions/install-packages
Browse files Browse the repository at this point in the history
  • Loading branch information
andeaseme committed Oct 24, 2023
1 parent f282d11 commit fdb0d74
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions actions/install-packages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,11 @@ runs:
python setup.py sdist
pip install $(ls -t dist/isee-*.tar.gz 2>/dev/null | head -n 1)
isee_installed=true
elif [[ "${{ inputs.pypi-packages }}" == "wads" && "${{ github.repository }}" == "i2mint/wads" ]]; then
echo "Installing wads from source"
python setup.py sdist
pip install $(ls -t dist/wads-*.tar.gz 2>/dev/null | head -n 1)
isee_installed=true
else
python -m pip install --upgrade pip wheel
pip install ${{ inputs.pypi-packages }}
Expand Down

0 comments on commit fdb0d74

Please sign in to comment.