Skip to content

Commit e8fadac

Browse files
committed
GH_Actions: fix running build command in pipenv
1 parent 509356a commit e8fadac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build_and_load_to_pypi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
pipenv install --dev
3333
3434
- name: Build distribution archives
35-
run: python3 -m build
35+
run: pipenv run python3 -m build
3636

3737
- name: Upload archieves to PYPI.org
38-
run: python3 -m twine upload -u ${{ secrets.api_user }} -p ${{ secrets.api_token }} dist/*
38+
run: pipenv run python3 -m twine upload -u ${{ secrets.api_user }} -p ${{ secrets.api_token }} dist/*

0 commit comments

Comments
 (0)