Skip to content

Commit 9b6b6e3

Browse files
authored
Merge pull request #87 from pessimistic-io/fix_release_action
fixed_action
2 parents 79ae64d + 69f7462 commit 9b6b6e3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ on:
55
types: [published]
66

77
jobs:
8-
publish:
8+
deploy:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v2
1212
- uses: actions/setup-python@v2
1313
with:
14-
python-version: '3.8'
14+
python-version: '3.x'
1515
- name: Install dependencies
1616
run: |
1717
python -m pip install --upgrade pip
18-
pip install -e .[distribute]
18+
pip install setuptools wheel twine
1919
- name: Build and publish
2020
env:
2121
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}

0 commit comments

Comments
 (0)