Skip to content

Commit d1e7717

Browse files
committed
fix path to cargo.toml
1 parent b6254ee commit d1e7717

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ jobs:
4747
python-version: 3.7
4848
- run: rustup update && rustup target add aarch64-apple-darwin
4949
- run: pip install maturin
50-
- run: maturin publish --no-sdist --universal2 -m python/Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
51-
- run: maturin publish --no-sdist -m python/Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
50+
- run: maturin publish --no-sdist --universal2 -m Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
51+
- run: maturin publish --no-sdist -m Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
5252
- uses: softprops/action-gh-release@v1
5353
with:
5454
files: target/wheels/*
@@ -65,7 +65,7 @@ jobs:
6565
- run: rustup update
6666
- run: pip install maturin
6767
- run: Remove-Item -LiteralPath "C:\msys64\" -Force -Recurse
68-
- run: maturin publish --no-sdist -m python/Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
68+
- run: maturin publish --no-sdist -m Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
6969
- uses: softprops/action-gh-release@v1
7070
with:
7171
files: target/wheels/*
@@ -77,7 +77,7 @@ jobs:
7777
with:
7878
submodules: true
7979
- run: pip install maturin
80-
- run: maturin sdist -m python/Cargo.toml
80+
- run: maturin sdist -m Cargo.toml
8181
- uses: pypa/gh-action-pypi-publish@release/v1
8282
with:
8383
user: ${{ secrets.PYPI_USER }}

0 commit comments

Comments
 (0)