From 88905bcc4721d545e61d007f14e51245d94c40dd Mon Sep 17 00:00:00 2001 From: captivus <366332+captivus@users.noreply.github.com> Date: Fri, 8 Dec 2023 17:23:09 -0600 Subject: [PATCH] fix: publish to PyPI with Poetry --- .github/workflows/release.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index a622feb740..3bec6d6e2f 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -22,10 +22,11 @@ jobs: # Update to use Poetry's cache cache: 'poetry' - # Install Poetry + # Install Poetry and add it to PATH - name: Install Poetry run: | curl -sSL https://install.python-poetry.org | python3 - + echo "$HOME/.local/bin" >> $GITHUB_PATH # Cache Poetry's dependencies based on the lock file - name: Set up Poetry cache