Skip to content

Commit

Permalink
fix path to cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
gtfierro committed Aug 8, 2022
1 parent b6254ee commit d1e7717
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ jobs:
python-version: 3.7
- run: rustup update && rustup target add aarch64-apple-darwin
- run: pip install maturin
- run: maturin publish --no-sdist --universal2 -m python/Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
- run: maturin publish --no-sdist -m python/Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
- run: maturin publish --no-sdist --universal2 -m Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
- run: maturin publish --no-sdist -m Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
- uses: softprops/action-gh-release@v1
with:
files: target/wheels/*
Expand All @@ -65,7 +65,7 @@ jobs:
- run: rustup update
- run: pip install maturin
- run: Remove-Item -LiteralPath "C:\msys64\" -Force -Recurse
- run: maturin publish --no-sdist -m python/Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
- run: maturin publish --no-sdist -m Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }}
- uses: softprops/action-gh-release@v1
with:
files: target/wheels/*
Expand All @@ -77,7 +77,7 @@ jobs:
with:
submodules: true
- run: pip install maturin
- run: maturin sdist -m python/Cargo.toml
- run: maturin sdist -m Cargo.toml
- uses: pypa/gh-action-pypi-publish@release/v1
with:
user: ${{ secrets.PYPI_USER }}
Expand Down

0 comments on commit d1e7717

Please sign in to comment.