Skip to content

Commit 9b754af

Browse files
authored
Merge pull request #13 from Mogost/release
Release action&version bump
2 parents 041ad12 + 0b597f2 commit 9b754af

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

.github/workflows/release.yml

+20
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(
66
name='django-debug-toolbar-line-profiling',
7-
version='0.8.0',
7+
version='0.8.1',
88
description='A panel for django-debug-toolbar that integrates information from line_profiler',
99
long_description=Path('README.rst').read_text(encoding='locale'),
1010
author='Mykhailo Keda',

0 commit comments

Comments
 (0)