Skip to content

Commit f23c387

Browse files
committed
fix: semantic release
1 parent d6281da commit f23c387

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,13 +55,13 @@ jobs:
5555
- name: List dist contents
5656
run: ls -la dist/
5757

58-
- name: Upload Release Assets
58+
- name: Upload Wheel Distribution
5959
uses: actions/upload-release-asset@v1
6060
env:
6161
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
6262
with:
6363
upload_url: ${{ steps.create_release.outputs.upload_url }}
64-
asset_path: ./dist/*.whl
64+
asset_path: ./dist/martor-${{ steps.get_version.outputs.VERSION }}-py3-none-any.whl
6565
asset_name: martor-${{ steps.get_version.outputs.VERSION }}-py3-none-any.whl
6666
asset_content_type: application/octet-stream
6767

@@ -71,7 +71,7 @@ jobs:
7171
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
7272
with:
7373
upload_url: ${{ steps.create_release.outputs.upload_url }}
74-
asset_path: ./dist/*.tar.gz
74+
asset_path: ./dist/martor-${{ steps.get_version.outputs.VERSION }}.tar.gz
7575
asset_name: martor-${{ steps.get_version.outputs.VERSION }}.tar.gz
7676
asset_content_type: application/gzip
7777

martor/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "1.7.8"
1+
__version__ = "1.7.9"
22
__release_date__ = "26-Jul-2025"
33
__author__ = "Agus Makmun (Summon Agus)"
44
__author_email__ = "summon.agus@gmail.com"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "martor"
7-
version = "1.7.8"
7+
version = "1.7.9"
88
description = "Django Markdown Editor"
99
readme = "README.md"
1010
license = { text = "GPL-3.0" }

0 commit comments

Comments
 (0)