Skip to content

Commit

Permalink
Fix setting default pipx python
Browse files Browse the repository at this point in the history
  • Loading branch information
dunkmann00 committed Apr 12, 2024
1 parent 84add66 commit e5c7a95
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ jobs:
name: Build PyPI Package
needs: notifications-build
runs-on: ubuntu-22.04
env:
PIPX_DEFAULT_PYTHON: ${{ steps.python.outputs.python-path }}
defaults:
run:
shell: bash
Expand All @@ -33,6 +31,10 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Set pipx default python
env:
PIPX_DEFAULT_PYTHON: ${{ steps.python.outputs.python-path }}
run: echo "PIPX_DEFAULT_PYTHON=$PIPX_DEFAULT_PYTHON" >> "$GITHUB_ENV"
- name: Setup Poetry
uses: ./.github/actions/setup-poetry
- name: Get notification apps
Expand Down

0 comments on commit e5c7a95

Please sign in to comment.