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 fd109f4 + 85d706c commit 85458d1Copy full SHA for 85458d1
2 files changed
.github/workflows/ci-cd.yml
@@ -4,7 +4,7 @@ on: push
4
jobs:
5
pypi-publish:
6
name: Upload release to PyPI
7
- if: github.ref == 'refs/heads/master' # On main only
+ if: startsWith(github.ref, 'refs/tags/v') # On tagged release only
8
runs-on: ubuntu-latest
9
environment:
10
name: pypi
README.md
@@ -148,5 +148,6 @@ elif token_type == TokenType.INVALID:
148
149
## Changelog
150
151
-### 2023-10-03 - v0.1.2
152
-- First working version published on PyPi
+### 2023-10-03 - v0.1.3
+- First working version published on PyPI
153
+- Setup CI for pushing to PyPI
0 commit comments