Skip to content

Commit dd54213

Browse files
committed
fix: update README paths in release workflow and pyproject.toml
1 parent 56f0e17 commit dd54213

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/release.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ jobs:
142142
- uses: actions/setup-python@v5
143143
with:
144144
python-version: 3.x
145+
- name: Copy README to kiru-py # ← Add this step
146+
run: cp README.md kiru-py/README.md
145147
- name: Build sdist
146148
uses: PyO3/maturin-action@v1
147149
with:

kiru-py/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "maturin"
44

55
[project]
66
name = "kiru"
7-
readme = "../README.md"
7+
readme = "README.md"
88
keywords = ["text", "chunking", "nlp", "rag"]
99
requires-python = ">=3.11"
1010
classifiers = [
@@ -26,7 +26,7 @@ Changelog = "https://github.com/bitswired/kiru/releases"
2626
[tool.maturin]
2727
features = ["pyo3/extension-module"]
2828
#jsdist-include = ["LICENSE", "README.md"]
29-
sdist-include = ["../README.md"]
29+
sdist-include = ["README.md"]
3030

3131

3232
[dependency-groups]

0 commit comments

Comments
 (0)