We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 361c936 + 700516a commit 9901f0cCopy full SHA for 9901f0c
.github/workflows/release.yml
@@ -1,8 +1,8 @@
1
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
2
3
on:
4
- push:
5
- branches: [master, main]
+ release:
+ types: [released]
6
7
jobs:
8
build-n-publish:
@@ -28,7 +28,6 @@ jobs:
28
--wheel
29
--outdir dist/
30
- name: Publish distribution 📦 to PyPI
31
- if: startsWith(github.ref, 'refs/tags')
32
uses: pypa/gh-action-pypi-publish@release/v1
33
with:
34
password: ${{ secrets.PYPI_API_TOKEN }}
setup.py
@@ -7,7 +7,7 @@ def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
9
10
-VERSION = '0.23.1'
+VERSION = '0.23.2'
11
12
setup(
13
name='bigcommerce',
0 commit comments