File tree Expand file tree Collapse file tree 2 files changed +79
-0
lines changed Expand file tree Collapse file tree 2 files changed +79
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish Python 🐍 distributions 📦 to pypi
2
+
3
+ on :
4
+ release :
5
+ types :
6
+ - published
7
+
8
+ jobs :
9
+ build-n-publish :
10
+ name : Build and publish Python 🐍 distributions 📦 to pypi
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@master
14
+ - name : Set up Python 3.9
15
+ uses : actions/setup-python@v1
16
+ with :
17
+ python-version : 3.9
18
+
19
+ - name : Install pypa/build
20
+ run : >-
21
+ python -m
22
+ pip install
23
+ build
24
+ --user
25
+ - name : Build a binary wheel and a source tarball
26
+ run : >-
27
+ python -m
28
+ build
29
+ --sdist
30
+ --wheel
31
+ --outdir dist/
32
+ .
33
+
34
+ - name : Publish distribution 📦 to PyPI
35
+ if : startsWith(github.ref, 'refs/tags')
36
+ uses : pypa/gh-action-pypi-publish@master
37
+ with :
38
+ user : __token__
39
+ password : ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change
1
+ name : Publish Python 🐍 distributions 📦 to TestPyPI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - master
7
+
8
+ jobs :
9
+ build-n-publish :
10
+ name : Build and publish Python 🐍 distributions 📦 to TestPyPI
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@master
14
+ - name : Set up Python 3.9
15
+ uses : actions/setup-python@v1
16
+ with :
17
+ python-version : 3.9
18
+
19
+ - name : Install pypa/build
20
+ run : >-
21
+ python -m
22
+ pip install
23
+ build
24
+ --user
25
+ - name : Build a binary wheel and a source tarball
26
+ run : >-
27
+ python -m
28
+ build
29
+ --sdist
30
+ --wheel
31
+ --outdir dist/
32
+ .
33
+
34
+ - name : Publish distribution 📦 to Test PyPI
35
+ uses : pypa/gh-action-pypi-publish@master
36
+ with :
37
+ user : __token__
38
+ password : ${{ secrets.TEST_PYPI_API_TOKEN }}
39
+ repository_url : https://test.pypi.org/legacy/
40
+ skip_existing : true
You can’t perform that action at this time.
0 commit comments