Skip to content

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dirvine committed Dec 24, 2024
1 parent 44f9c68 commit ebc9af4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist --sdist-include README_PYTHON.md,Cargo.toml,src/*,python/*,pyproject.toml
args: --out dist
working-directory: ./autonomi
- name: Upload sdist
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ jobs:
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist --sdist-include README_PYTHON.md,Cargo.toml,src/*,python/*,pyproject.toml
args: --out dist
working-directory: ./ant-node
- name: Upload sdist
uses: actions/upload-artifact@v4
Expand Down
8 changes: 7 additions & 1 deletion autonomi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,13 @@ features = ["extension-module"]
module-name = "autonomi_client"
python-source = "python"
bindings = "pyo3"
include = ["Cargo.toml"]
include = [
"README_PYTHON.md",
"Cargo.toml",
"src/*",
"python/*",
"pyproject.toml",
]
manifest-path = "Cargo.toml"

[tool.pytest.ini_options]
Expand Down

0 comments on commit ebc9af4

Please sign in to comment.