File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,14 +60,18 @@ jobs:
6060 if : github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
6161 runs-on : ubuntu-latest
6262 steps :
63- - name : Checkout source
64- uses : actions/checkout@v2
65- - name : Build package
66- run : |
67- pip install wheel
68- python setup.py sdist bdist_wheel
69- - name : Publish
70- uses : pypa/gh-action-pypi-publish@v1.1.0
71- with :
72- user : __token__
73- password : ${{ secrets.PYPI_KEY }}
63+ - name : Checkout source
64+ uses : actions/checkout@v2
65+ - name : Set up Python 3.7
66+ uses : actions/setup-python@v1
67+ with :
68+ python-version : 3.7
69+ - name : Build package
70+ run : |
71+ pip install wheel
72+ python setup.py sdist bdist_wheel
73+ - name : Publish
74+ uses : pypa/gh-action-pypi-publish@v1.1.0
75+ with :
76+ user : __token__
77+ password : ${{ secrets.PYPI_KEY }}
You can’t perform that action at this time.
0 commit comments