Skip to content

Commit

Permalink
ci: Add Poetry to PATH
Browse files Browse the repository at this point in the history
  • Loading branch information
jidicula committed Feb 6, 2022
1 parent c89b0fc commit 5b4fb06
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/poetry-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:

- name: Install latest version of Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Add Poetry to $PATH
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Get Poetry version
run: poetry --version
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/poetry-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:

- name: Install Poetry
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Add Poetry to $PATH
run: |
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Get Poetry version
run: poetry --version
Expand Down

0 comments on commit 5b4fb06

Please sign in to comment.