From cc1c41c30a34ecacdd1ca058ab05c0eb73b60d42 Mon Sep 17 00:00:00 2001 From: Darren Burns Date: Fri, 19 Feb 2021 14:21:44 +0000 Subject: [PATCH] Add virtualenvs-create option to install-poetry release step --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 094adebf..fe00f3f0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,6 +12,8 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-python@v2 - uses: snok/install-poetry@v1.1.1 + with: + virtualenvs-create: true - name: Publish to PyPI run: | poetry publish --build --username __token__ --password ${{ secrets.pypi_api_token }}