Skip to content

Commit 45b30af

Browse files
committed
fix(deploy): use local readme
1 parent 80456d4 commit 45b30af

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/pypi-publish.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ jobs:
1919
id: get_version
2020
run: echo "version=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
2121

22+
- name: Copy README from root to src/python
23+
run: |
24+
rm -f src/python/README.md
25+
cp README.md src/python/README.md
26+
2227
- name: Update version in pyproject.toml
2328
working-directory: src/python
2429
run: |

src/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "pose_format"
33
description = "Library for viewing, augmenting, and handling .pose files"
44
version = "v0.10.2"
55
keywords = ["Pose Files", "Pose Interpolation", "Pose Augmentation"]
6-
readme = "../../README.md"
6+
readme = "README.md"
77
authors = [
88
{ name = "Amit Moryossef", email = "[email protected]" },
99
{ name = "Mathias Müller", email = "[email protected]" },

0 commit comments

Comments
 (0)