You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# This workflow will upload a Python Package using Twine when a release is created
2
+
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries
3
+
4
+
name: Upload Python Package to PyPI
5
+
6
+
on:
7
+
release:
8
+
types: [created]
9
+
10
+
jobs:
11
+
deploy:
12
+
13
+
runs-on: ubuntu-latest
14
+
15
+
steps:
16
+
- uses: actions/checkout@v2
17
+
- name: Set up Python
18
+
uses: actions/setup-python@v2
19
+
with:
20
+
python-version: '3.x'
21
+
- name: Install dependencies
22
+
run: |
23
+
python -m pip install --upgrade pip
24
+
python -m pip install pytest pytest-cov
25
+
python -m pip install setuptools wheel twine
26
+
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
0 commit comments