diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 3039030..2419a4d 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -12,6 +12,10 @@ jobs: with: python-version: '3.x' - uses: dschep/install-poetry-action@v1.3 + - name: Build dists + run: make build - name: Pypi Publish - run: | - make publish \ No newline at end of file + uses: pypa/gh-action-pypi-publish@master + with: + user: __token__ + password: ${{ secrets.pypi_password }} \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml index 5d2e114..11e310c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aerich" -version = "0.1.9" +version = "0.2.0" description = "A database migrations tool for Tortoise ORM." authors = ["long2ice "] license = "MIT"