mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-12-14 20:29:33 -06:00
13 lines
213 B
Bash
Executable File
13 lines
213 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Limpa diretório dist anterior se existir
|
|
rm -rf dist/*
|
|
|
|
# Gera os arquivos de distribuição usando uv
|
|
uv build
|
|
|
|
# Faz upload para o PyPI usando uv
|
|
uv publish
|
|
|
|
echo "Pacote publicado com sucesso!"
|