Skip to content

Commit 4965722

Browse files
committed
Release action&version bump
1 parent d32e3d5 commit 4965722

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/workflows/release.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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 }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name='django-debug-toolbar-line-profiling',
5-
version='0.7.3',
5+
version='0.7.4',
66
description='A panel for django-debug-toolbar that integrates ' +
77
'information from line_profiler',
88
long_description=open('README.rst').read(),

0 commit comments

Comments
 (0)