Skip to content

Commit 1fcad6b

Browse files
committed
update release.yml
update release.yml
1 parent e9d4afb commit 1fcad6b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ jobs:
99
runs-on: ubuntu-20.04
1010

1111
steps:
12-
- uses: actions/checkout@v2
13-
- name: Set up Python
14-
- uses: actions/setup-python@v2
15-
with:
16-
python-version: '3.9'
12+
- uses: actions/checkout@master
13+
- name: Set up Python 3.7
14+
uses: actions/setup-python@v2
15+
with:
16+
python-version: 3.7
1717
- name: Install dependencies
1818
run: |
1919
python -m pip install --upgrade pip
2020
pip install setuptools wheel twine
2121
- name: Build and publish
2222
env:
2323
TWINE_USERNAME: __token__
24-
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN}}
24+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
2525
run: |
2626
python setup.py sdist bdist_wheel
2727
twine upload dist/*

0 commit comments

Comments
 (0)