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.
1 parent 8079ef8 commit 85d706cCopy full SHA for 85d706c
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/main' # 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