Skip to content

Commit 614a251

Browse files
authored
Merge pull request #51 from mhrivnak/publish
adds PyPI publish automation
2 parents 6d530a0 + 565e538 commit 614a251

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/publish.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
tags:
6+
- '*'
7+
8+
jobs:
9+
release:
10+
name: Publish
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@master
14+
- name: Set up Python
15+
uses: actions/setup-python@v1
16+
with:
17+
python-version: 3.9
18+
- name: Build sdist
19+
run: python setup.py sdist
20+
- name: Publish
21+
uses: pypa/gh-action-pypi-publish@master
22+
with:
23+
password: ${{ secrets.TEST_PYPI_API_TOKEN }}
24+
repository_url: https://test.pypi.org/legacy/
25+
- name: Publish distribution 📦 to PyPI
26+
if: startsWith(github.ref, 'refs/tags')
27+
uses: pypa/gh-action-pypi-publish@master
28+
with:
29+
password: ${{ secrets.PYPI_API_TOKEN }}

0 commit comments

Comments
 (0)