File tree Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Expand file tree Collapse file tree 3 files changed +27
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish Python Package
2
+
3
+ on :
4
+ release :
5
+ types : [published]
6
+ jobs :
7
+ deploy :
8
+ runs-on : ubuntu-latest
9
+ steps :
10
+ - uses : actions/checkout@v4
11
+
12
+ - name : Set up Python
13
+ uses : actions/setup-python@v4
14
+ with :
15
+ python-version : " 3.x"
16
+
17
+ - name : Install dependencies
18
+ run : pip install build twine
19
+
20
+ - name : Build package
21
+ run : python -m build
22
+
23
+ - name : Upload to PyPI
24
+ run : twine upload dist/* --username __token__ --password ${{ secrets.PYPI_API_TOKEN }}
Original file line number Diff line number Diff line change 1
- # Smart Text Decorator <sup >v0.1.2 </sup >
1
+ # Smart Text Decorator <sup >v0.1.3 </sup >
2
2
Smart text decorator.
3
3
A library for decorating strings and displaying them beautifully in the console.
4
4
@@ -29,7 +29,7 @@ Author and developer: ___A.A. Suvorov___
29
29
30
30
## What's new:
31
31
32
- __ smarttextdecorator__ v0.1.2
32
+ __ smarttextdecorator__ v0.1.3
33
33
34
34
> WARNING! Not backward compatible with older versions.
35
35
Original file line number Diff line number Diff line change 17
17
18
18
"""
19
19
from .decorators import SmartPrinter , FramedTextDecorator , CenteredTextDecorator
20
- __version__ = '0.1.2 '
20
+ __version__ = '0.1.3 '
21
21
__author__ = 'A.A. Suvorov'
You can’t perform that action at this time.
0 commit comments