|
25 | 25 | - run: docker run -v "$(pwd)":/workdir --platform linux/${{ matrix.architecture }} quay.io/pypa/manylinux2014_${{ matrix.architecture }} /bin/bash /workdir/.github/workflows/manylinux_build_script.sh |
26 | 26 | - uses: pypa/gh-action-pypi-publish@release/v1 |
27 | 27 | with: |
28 | | - user: __token__ |
| 28 | + user: ${{ secrets.PYPI_USER }} |
29 | 29 | password: ${{ secrets.PYPI_PASS }} |
30 | 30 | packages_dir: target/wheels |
31 | 31 | - uses: softprops/action-gh-release@v1 |
|
47 | 47 | python-version: 3.7 |
48 | 48 | - run: rustup update && rustup target add aarch64-apple-darwin |
49 | 49 | - run: pip install maturin |
50 | | - - run: maturin publish --no-sdist --universal2 -m python/Cargo.toml -u __token__ -p ${{ secrets.PYPI_PASS }} |
51 | | - - run: maturin publish --no-sdist -m python/Cargo.toml -u __token__ -p ${{ secrets.PYPI_PASS }} |
| 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 }} |
52 | 52 | - uses: softprops/action-gh-release@v1 |
53 | 53 | with: |
54 | 54 | files: target/wheels/* |
|
65 | 65 | - run: rustup update |
66 | 66 | - run: pip install maturin |
67 | 67 | - run: Remove-Item -LiteralPath "C:\msys64\" -Force -Recurse |
68 | | - - run: maturin publish --no-sdist -m python/Cargo.toml -u __token__ -p ${{ secrets.PYPI_PASS }} |
| 68 | + - run: maturin publish --no-sdist -m python/Cargo.toml -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASS }} |
69 | 69 | - uses: softprops/action-gh-release@v1 |
70 | 70 | with: |
71 | 71 | files: target/wheels/* |
|
80 | 80 | - run: maturin sdist -m python/Cargo.toml |
81 | 81 | - uses: pypa/gh-action-pypi-publish@release/v1 |
82 | 82 | with: |
83 | | - user: __token__ |
| 83 | + user: ${{ secrets.PYPI_USER }} |
84 | 84 | password: ${{ secrets.PYPI_PASS }} |
85 | 85 | packages_dir: target/wheels |
86 | 86 | - uses: softprops/action-gh-release@v1 |
|
0 commit comments