diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b4de4b4..720fdcd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -22,6 +22,12 @@ jobs: - name: Instala setuptools run: pip3 install --upgrade setuptools + - name: Instala wheel + run: pip3 install --upgrade wheel + + - name: Instala twine + run: pip3 install --upgrade twine + - name: Instala todos los paquetes run: pip3 install . @@ -32,6 +38,6 @@ jobs: run: python3 setup.py sdist bdist_wheel - name: Deploy - run: python3 -m twine upload -u __token___ -p pypi- AgENdGVzdC5weXBpLm9yZwIkZjRhZjI1ZmYtYmU1Yy00MDg0LTkwOTUtNmMxYmU0OTZiZWVhAAIleyJwZXJtaXNzaW9ucyI6ICJ1c2VyIiwgInZlcnNpb24iOiAxfQAABiDG3R3L6T4ZWbDokixV1o_J-6eA66V5fjYhC_fBCM8U7Q --repository testpypi dist/* + run: python3 -m twine upload -u __token__ -p ${{ secrets.API_KEY }} --repository testpypi dist/* diff --git a/setup.py b/setup.py index 504110e..a7d1101 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name="mendotimeseries", - version="0.0.3", + version="0.0.5", author="Mendo Team", author_email="pm@mendoteam.com", description="A time series prediction package",