Skip to content

Commit

Permalink
Fix requirements in publishing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Felixoid committed Apr 27, 2020
1 parent 5f911f7 commit fe2d1db
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Upload Python Package

on:
release:
types: [created]
types:
- created
- published

jobs:
deploy:
Expand All @@ -19,6 +21,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
pip install -r requirements.txt
- name: Lint with flake8
run: |
pip install flake8
Expand Down

0 comments on commit fe2d1db

Please sign in to comment.