Skip to content

Commit

Permalink
fix: source workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dirvine committed Dec 24, 2024
1 parent 9c07738 commit 44f9c68
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python-publish-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,13 @@ jobs:
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --manifest-path Cargo.toml --out dist
args: --out dist --sdist-include README_PYTHON.md,Cargo.toml,src/*,python/*,pyproject.toml
working-directory: ./autonomi
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist/*.tar.gz
path: ./autonomi/dist/*.tar.gz
if-no-files-found: error

release:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/python-publish-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,13 +152,13 @@ jobs:
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --manifest-path Cargo.toml --out dist
args: --out dist --sdist-include README_PYTHON.md,Cargo.toml,src/*,python/*,pyproject.toml
working-directory: ./ant-node
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels
path: dist/*.tar.gz
path: ./ant-node/dist/*.tar.gz
if-no-files-found: error

release:
Expand Down

0 comments on commit 44f9c68

Please sign in to comment.