From 791e2284b998011ba360b31bb9f187ad005a8acb Mon Sep 17 00:00:00 2001 From: palewire Date: Wed, 25 May 2022 12:41:28 -0700 Subject: [PATCH] pipenv run --- .github/workflows/continuous-deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-deployment.yaml b/.github/workflows/continuous-deployment.yaml index 237ed45..10ca80e 100644 --- a/.github/workflows/continuous-deployment.yaml +++ b/.github/workflows/continuous-deployment.yaml @@ -69,14 +69,14 @@ jobs: - id: build name: Build release run: | - python setup.py sdist - python setup.py bdist_wheel + pipenv run python setup.py sdist + pipenv run python setup.py bdist_wheel ls -l dist - id: check name: Check release run: | - twine check dist/* + pipenv run twine check dist/* - id: save name: Save artifact