From e0b78101b76a7395265272ab95b1a92042fadab9 Mon Sep 17 00:00:00 2001 From: Tpt Date: Sat, 16 Jan 2021 09:15:47 +0100 Subject: [PATCH] Attempt to fix macOS and Windows wheel upload on CI --- .github/workflows/release.yml | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b4da9fd0..6673943c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -85,13 +85,8 @@ jobs: steps: - uses: actions/checkout@v2 - run: sed -i 's/path="..\/lib", //g' python/Cargo.toml - - run: docker run --rm -v $(pwd):/io konstin2/maturin build --release + - run: docker run --rm -v $(pwd):/io konstin2/maturin publish -u __token__ -p ${{ secrets.PYPI_PASSWORD }} working-directory: ./python - - uses: pypa/gh-action-pypi-publish@v1.4.1 - with: - user: __token__ - password: ${{ secrets.PYPI_PASSWORD }} - packages_dir: ./python/target/wheels publish_pypi_mac_windows: runs-on: ${{ matrix.os }} needs: publish_lib_crate @@ -104,13 +99,8 @@ jobs: with: python-version: 3.6 - run: pip install maturin - - run: maturin build --release --no-sdist + - run: maturin publish --no-sdist -u __token__ -p ${{ secrets.PYPI_PASSWORD }} working-directory: ./python - - uses: pypa/gh-action-pypi-publish@v1.4.1 - with: - user: __token__ - password: ${{ secrets.PYPI_PASSWORD }} - packages_dir: ./target/wheels publish_npm: runs-on: ubuntu-latest steps: