projects
/
tweepy.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3bdfa02
)
Simplify dependency installation in GitHub Actions Deploy workflow
author
Harmon
<Harmon758@gmail.com>
Wed, 23 Dec 2020 20:18:03 +0000
(14:18 -0600)
committer
Harmon
<Harmon758@gmail.com>
Wed, 23 Dec 2020 20:18:03 +0000
(14:18 -0600)
Twine requires setuptools and wheel, so installing twine should already install both
.github/workflows/deploy.yml
patch
|
blob
|
blame
|
history
diff --git
a/.github/workflows/deploy.yml
b/.github/workflows/deploy.yml
index 4cb693ae87e486991608696958ed48a0ed4c14b7..80a2eb8892311399dac451ea774280391a01e512 100644
(file)
--- a/
.github/workflows/deploy.yml
+++ b/
.github/workflows/deploy.yml
@@
-16,7
+16,7
@@
jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
- pip install
setuptools wheel
twine
+ pip install twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}