Skip to content

Commit abed4ec

Browse files
derekallmanclaude
andcommitted
fix: release workflow — run maturin from workspace root
pyproject.toml was consolidated to the repo root; the working-directory pointing at crates/hotcoco-pyo3 was stale and caused maturin to fail with "pyproject.toml not found". - Remove working-directory from build-wheels and build-sdist jobs - Update artifact paths from crates/hotcoco-pyo3/dist/ → dist/ Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent f5336af commit abed4ec

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,11 @@ jobs:
6565
target: ${{ matrix.target }}
6666
args: --release --out dist
6767
manylinux: auto
68-
working-directory: crates/hotcoco-pyo3
6968

7069
- uses: actions/upload-artifact@v4
7170
with:
7271
name: wheels-${{ matrix.target }}
73-
path: crates/hotcoco-pyo3/dist/*.whl
72+
path: dist/*.whl
7473

7574
build-sdist:
7675
name: Build sdist
@@ -83,12 +82,11 @@ jobs:
8382
with:
8483
command: sdist
8584
args: --out dist
86-
working-directory: crates/hotcoco-pyo3
8785

8886
- uses: actions/upload-artifact@v4
8987
with:
9088
name: sdist
91-
path: crates/hotcoco-pyo3/dist/*.tar.gz
89+
path: dist/*.tar.gz
9290

9391
# ── PyPI publish ───────────────────────────────────────────────────────
9492
publish-pypi:

0 commit comments

Comments
 (0)