Skip to content

Commit

Permalink
Update pyinstaller.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jcbhmr authored Jul 24, 2024
1 parent 6c9c993 commit be0db6e
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/pyinstaller.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,15 @@ jobs:
submodules: recursive
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install pipenv --user
python-version: "3.11"
# https://pipenv.pypa.io/en/latest/installation.html
- run: |
pip install pipenv --user
if [ "$OS" = "Windows_NT" ]; then
echo "$(python -m site --user-base | sed 's/site-packages/Scripts/')" >> "$GITHUB_PATH"
else
echo "$(python -m site --user-base)/bin" >> "$GITHUB_PATH"
fi
- run: pipenv install --dev -e .
- run: pipenv install pyinstaller
- run: pipenv run bikeshed update
Expand Down

0 comments on commit be0db6e

Please sign in to comment.