8 lines
148 B
Bash
8 lines
148 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
maturin publish \
|
||
|
--interpreter python3.7 \
|
||
|
--username __token__ \
|
||
|
--password "$MATURIN_PASSWORD" \
|
||
|
--no-sdist
|