File tree Expand file tree Collapse file tree 2 files changed +21
-1
lines changed Expand file tree Collapse file tree 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 2
2
3
3
setup (
4
4
name = 'django-debug-toolbar-line-profiling' ,
5
- version = '0.7.3 ' ,
5
+ version = '0.7.4 ' ,
6
6
description = 'A panel for django-debug-toolbar that integrates ' +
7
7
'information from line_profiler' ,
8
8
long_description = open ('README.rst' ).read (),
You can’t perform that action at this time.
0 commit comments