We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1eaa3b4 commit 67282a2Copy full SHA for 67282a2
1 file changed
.circleci/config.yml
@@ -1,5 +1,8 @@
1
version: 2.1
2
3
+orbs:
4
+ semantic-release: trustedshops-public/semantic-release@1.2.0
5
+
6
executors:
7
python:
8
docker:
@@ -105,6 +108,18 @@ workflows:
105
108
- test
106
109
context:
107
110
- pip-test
111
+ - pip-publish:
112
+ name: pip-publish-pypi
113
+ repository: pypi
114
+ filters:
115
+ branches:
116
+ ignore: /.*/
117
+ tags:
118
+ only: /.*/
119
+ requires:
120
+ - test
121
+ context:
122
+ - pip-live
123
- build-gh-pages:
124
filters:
125
branches:
@@ -113,3 +128,13 @@ workflows:
128
requires:
129
130
- pip-publish-testpypi
131
+ - semantic-release/with-changelog-github-config:
132
+ name: semantic-release
133
134
135
+ only:
136
+ - main
137
138
139
140
+ - semantic-release
0 commit comments