Skip to content

Commit 74d5692

Browse files
committed
Add the publish
1 parent eb86124 commit 74d5692

File tree

3 files changed

+19
-0
lines changed

3 files changed

+19
-0
lines changed

.github/workflows/main.yaml

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55
push:
66
pull_request:
77

8+
env:
9+
HAS_SECRETS: ${{ secrets.HAS_SECRETS }}
10+
811
jobs:
912
build:
1013
name: Continuous integration
@@ -20,3 +23,14 @@ jobs:
2023

2124
- name: Checks
2225
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'

ci/config.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,7 @@ checks:
77
backport.yaml: False
88
clean.yaml: False
99
audit.yaml: False
10+
11+
publish:
12+
docker:
13+
images: []

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
version=VERSION,
1818
description="A simple library to get colors in the bash terminal",
1919
long_description=README,
20+
long_description_content_type="text/markdown",
2021
classifiers=[
2122
"Development Status :: 5 - Production/Stable",
2223
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)