Skip to content

Commit cec94ec

Browse files
authored
Merge pull request #63 from basf/hotfix
update pipeline
2 parents 3f52c19 + c982fe9 commit cec94ec

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/build-publish-pypi.yml

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
1-
name: PyPI Builder and Releaser
1+
name: Publish Package to PyPi
22

33
on:
44
push:
5-
tags:
6-
- "**"
5+
branches:
6+
- master
77

88
jobs:
99
publish:
10-
name: Publishes release candidate to PyPI
1110
runs-on: ubuntu-latest
1211

1312
steps:
1413
- name: Checkout code
1514
uses: actions/checkout@v2
16-
with:
17-
fetch-depth: 0
1815

1916
- name: Set up Python
2017
uses: actions/setup-python@v2
@@ -32,4 +29,4 @@ jobs:
3229
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
3330
run: |
3431
python setup.py sdist bdist_wheel
35-
twine upload dist/*
32+
twine upload dist/*

0 commit comments

Comments
 (0)