File size: 143 Bytes
2472a7e |
1 2 3 4 5 6 7 8 9 10 11 |
#!/usr/bin/env bash
set -e
pushd ./lama_cleaner/app
yarn run build
popd
rm -r -f dist
python3 setup.py sdist bdist_wheel
twine upload dist/*
|
2472a7e |
1 2 3 4 5 6 7 8 9 10 11 |
#!/usr/bin/env bash
set -e
pushd ./lama_cleaner/app
yarn run build
popd
rm -r -f dist
python3 setup.py sdist bdist_wheel
twine upload dist/*
|