8 lines
137 B
Bash
Executable File
8 lines
137 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
MATURIN_PYPI_TOKEN="$(pass show pypi-token | head -1)"
|
|
export MATURIN_PYPI_TOKEN
|
|
|
|
maturin publish
|