From 7a78d7233e2395f2c6161ac5802d0db733e4c06f Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Tue, 10 Mar 2026 02:42:01 +0000 Subject: [PATCH] use `poetry self add` to avoid Windows path issue, see: https://github.com/python-poetry/poetry/issues/10028 --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 054351a..a3381b2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -66,6 +66,10 @@ jobs: path: .venv key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} + - name: Install Poetry plugins + run: poetry self add poethepoet + shell: bash + - name: Install dependencies run: poetry install --with build shell: bash