File tree 2 files changed +21
-1
lines changed
2 files changed +21
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ release :
5
+ types : [published]
6
+
7
+ jobs :
8
+ PyPI :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v4
12
+ - uses : actions/setup-python@v5
13
+ with :
14
+ python-version : " 3.x"
15
+ - run : python -m pip install --upgrade pip build wheel twine
16
+ - run : python -m build --sdist --wheel
17
+ - run : python -m twine upload dist/*
18
+ env :
19
+ TWINE_USERNAME : __token__
20
+ TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
Original file line number Diff line number Diff line change 4
4
5
5
setup (
6
6
name = 'django-debug-toolbar-line-profiling' ,
7
- version = '0.8.0 ' ,
7
+ version = '0.8.1 ' ,
8
8
description = 'A panel for django-debug-toolbar that integrates information from line_profiler' ,
9
9
long_description = Path ('README.rst' ).read_text (encoding = 'locale' ),
10
10
author = 'Mykhailo Keda' ,
You can’t perform that action at this time.
0 commit comments