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 e9d4afb commit 1fcad6bCopy full SHA for 1fcad6b
.github/workflows/release.yml
@@ -9,19 +9,19 @@ jobs:
9
runs-on: ubuntu-20.04
10
11
steps:
12
- - uses: actions/checkout@v2
13
- - name: Set up Python
14
- - uses: actions/setup-python@v2
15
- with:
16
- python-version: '3.9'
+ - uses: actions/checkout@master
+ - name: Set up Python 3.7
+ uses: actions/setup-python@v2
+ with:
+ python-version: 3.7
17
- name: Install dependencies
18
run: |
19
python -m pip install --upgrade pip
20
pip install setuptools wheel twine
21
- name: Build and publish
22
env:
23
TWINE_USERNAME: __token__
24
- TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN}}
+ TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
25
26
python setup.py sdist bdist_wheel
27
twine upload dist/*
0 commit comments