From b8544e41110040ed85600ad72cb750974b1f7229 Mon Sep 17 00:00:00 2001 From: rogeliolopez Date: Fri, 6 Oct 2023 19:19:54 -0600 Subject: [PATCH] fix GH action --- .github/workflows/release.yml | 6 +++--- mongoengine_plus/version.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 649ca9a..9d19515 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: steps: - uses: actions/checkout@master - name: Set up Python 3.8 - uses: actions/setup-python@v4.7.0 + uses: actions/setup-python@v2.2.2 with: python-version: 3.8 - name: Install dependencies @@ -20,5 +20,5 @@ jobs: - name: Publish distribution 📦 to PyPI uses: pypa/gh-action-pypi-publish@master with: - user: ${{ secrets.PYPI_USERNAME }} - password: ${{ secrets.PYPI_PASSWORD }} + user: __token__ + password: ${{ secrets.pypi_password }} \ No newline at end of file diff --git a/mongoengine_plus/version.py b/mongoengine_plus/version.py index f18b593..27a28a2 100644 --- a/mongoengine_plus/version.py +++ b/mongoengine_plus/version.py @@ -1 +1 @@ -__version__ = '0.1.1.dev1' +__version__ = '0.1.1.dev2'