Skip to content

Commit d6281da

Browse files
committed
fix: semantic release
1 parent 7f3dbbf commit d6281da

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ jobs:
2828
- name: Install dependencies
2929
run: |
3030
python -m pip install --upgrade pip
31-
pip install hatch python-semantic-release[github]
31+
pip install build
3232
3333
- name: Get tag version
3434
id: get_version
3535
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
3636

3737
- name: Build package
38-
run: hatch build
38+
run: python -m build
3939

4040
- name: Create GitHub Release
4141
id: create_release
@@ -52,6 +52,9 @@ jobs:
5252
draft: false
5353
prerelease: false
5454

55+
- name: List dist contents
56+
run: ls -la dist/
57+
5558
- name: Upload Release Assets
5659
uses: actions/upload-release-asset@v1
5760
env:

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.7"
1+
__version__ = "1.7.8"
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.7"
7+
version = "1.7.8"
88
description = "Django Markdown Editor"
99
readme = "README.md"
1010
license = { text = "GPL-3.0" }

0 commit comments

Comments
 (0)