We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7312865 commit 79a7f54Copy full SHA for 79a7f54
1 file changed
.github/workflows/pythonpublish.yml
@@ -11,17 +11,19 @@ jobs:
11
steps:
12
- uses: actions/checkout@v2
13
- name: Set up Python
14
- uses: actions/setup-python@v5
+ uses: actions/setup-python@v1
15
with:
16
python-version: '3.x'
17
- name: Install dependencies
18
- run: |
19
- python -m pip install --upgrade pip
20
- pip install setuptools wheel twine
+ uses: BSFishy/pip-action@v1
+ with:
+ packages: |
21
+ twine
22
+ build
23
- name: Build and publish
24
env:
25
TWINE_USERNAME: __token__
26
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
27
run: |
- python setup.py sdist
28
+ pyproject-build
29
twine upload dist/*
0 commit comments