We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83f6728 commit c982fe9Copy full SHA for c982fe9
1 file changed
.github/workflows/build-publish-pypi.yml
@@ -1,20 +1,17 @@
1
-name: PyPI Builder and Releaser
+name: Publish Package to PyPi
2
3
on:
4
push:
5
- tags:
6
- - "**"
+ branches:
+ - master
7
8
jobs:
9
publish:
10
- name: Publishes release candidate to PyPI
11
runs-on: ubuntu-latest
12
13
steps:
14
- name: Checkout code
15
uses: actions/checkout@v2
16
- with:
17
- fetch-depth: 0
18
19
- name: Set up Python
20
uses: actions/setup-python@v2
@@ -32,4 +29,4 @@ jobs:
32
29
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
33
30
run: |
34
31
python setup.py sdist bdist_wheel
35
- twine upload dist/*
+ twine upload dist/*
0 commit comments