We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bc7cd6 commit fdcb8e9Copy full SHA for fdcb8e9
.github/workflows/release.yml
@@ -11,21 +11,18 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v3
14
-
15
- - name: Set up Python 3.x
+ - name: Set up Python 3.11
16
uses: actions/setup-python@v4
17
with:
18
- python-version: "3.x"
19
+ python-version: "3.11"
20
- name: Install release dependencies
21
run: |
22
python -m pip install --upgrade pip
23
- pip install setuptools wheel twine
24
+ pip install build twine
25
- name: Build and publish package
26
env:
27
TWINE_USERNAME: ${{ secrets.PYPI_STACUTILS_USERNAME }}
28
TWINE_PASSWORD: ${{ secrets.PYPI_STACUTILS_PASSWORD }}
29
30
- python setup.py sdist bdist_wheel
+ python -m build
31
twine upload dist/*
0 commit comments