diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 99a0794..4c9b1d6 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,10 +10,20 @@ jobs: uses: actions/checkout@v3 with: fetch-depth: 0 - - run: | - python -m pip install --upgrade pip - python -m pip install setuptools wheel - python -m pip install . + - name: Install pypa/build + run: >- + python -m + pip install + build + --user + - name: Build a binary wheel and a source tarball + run: >- + python -m + build + --sdist + --wheel + --outdir dist/ + . - name: Publish package uses: pypa/gh-action-pypi-publish@release/v1 with: diff --git a/ngshare/version.py b/ngshare/version.py index ed7d50e..ef7eb44 100644 --- a/ngshare/version.py +++ b/ngshare/version.py @@ -1 +1 @@ -__version__ = '0.5.3' +__version__ = '0.6.0'