Skip to content

Commit

Permalink
CHORE: Install Poetry in separate venv, fix version
Browse files Browse the repository at this point in the history
  • Loading branch information
truhanen committed Oct 30, 2023
1 parent 472ef04 commit 310cd48
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,11 @@ runs:
using: "composite"
steps:
- name: Install Poetry
run: pip3 install poetry
run: |
export POETRY_HOME=$HOME/poetry
python3 -m venv $POETRY_HOME
$POETRY_HOME/bin/pip install poetry==1.6.1
sudo ln -s $POETRY_HOME/bin/poetry /usr/local/bin/poetry
shell: bash

- name: Setup Python
Expand Down

0 comments on commit 310cd48

Please sign in to comment.