File tree 3 files changed +19
-0
lines changed
3 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 5
5
push :
6
6
pull_request :
7
7
8
+ env :
9
+ HAS_SECRETS : ${{ secrets.HAS_SECRETS }}
10
+
8
11
jobs :
9
12
build :
10
13
name : Continuous integration
20
23
21
24
- name : Checks
22
25
run : c2cciutils-checks
26
+
27
+ - name : Init pypi
28
+ run : |
29
+ echo "[pypi]" > ~/.pypirc
30
+ echo "username = sbrunner" >> ~/.pypirc
31
+ echo "password = ${{ secrets.PYPI_PASSWORD }}" >> ~/.pypirc
32
+ pip install --user wheel twine
33
+ if : env.HAS_SECRETS == 'HAS_SECRETS'
34
+ - name : Publish
35
+ run : c2cciutils-publish
36
+ if : env.HAS_SECRETS == 'HAS_SECRETS'
Original file line number Diff line number Diff line change 7
7
backport.yaml : False
8
8
clean.yaml : False
9
9
audit.yaml : False
10
+
11
+ publish :
12
+ docker :
13
+ images : []
Original file line number Diff line number Diff line change 17
17
version = VERSION ,
18
18
description = "A simple library to get colors in the bash terminal" ,
19
19
long_description = README ,
20
+ long_description_content_type = "text/markdown" ,
20
21
classifiers = [
21
22
"Development Status :: 5 - Production/Stable" ,
22
23
"Intended Audience :: Developers" ,
You can’t perform that action at this time.
0 commit comments