Browse Source

Allow wheel to be present on pip

tags/v0.3.7rc2
haixuanTao 1 year ago
parent
commit
7a93f726e3
1 changed files with 2 additions and 4 deletions
  1. +2
    -4
      .github/workflows/node-hub-ci-cd.yml

+ 2
- 4
.github/workflows/node-hub-ci-cd.yml View File

@@ -133,13 +133,11 @@ jobs:

if [[ -f "Cargo.toml" && -f "pyproject.toml" ]]; then
echo "Publishing $dir using maturin..."
poetry publish
maturin publish --skip-existing
else
if [ -f "pyproject.toml" ]; then
echo "Publishing $dir using Poetry..."
poetry publish --build
fi
fi
poetry publish --build --skip-existing

if [ -f "Cargo.toml" ]; then
echo "Publishing $dir using Cargo..."


Loading…
Cancel
Save