Skip to content

Commit

Permalink
Fix deprecated usage of add-path in GH Action workflows (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph Egan authored Nov 19, 2020
1 parent e74ca18 commit b96bc04
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
python -m pip install --upgrade pip
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - --version 1.0.0
echo "::add-path::$HOME/.poetry/bin"
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Run tox
run: |
poetry install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: |
python -m pip install --upgrade pip
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python - --version 1.0.0
echo "::add-path::$HOME/.poetry/bin"
echo "$HOME/.poetry/bin" >> $GITHUB_PATH
- name: Build
run: |
make dist
Expand Down

0 comments on commit b96bc04

Please sign in to comment.