diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6f4cb82..3d36943 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,31 +30,31 @@ jobs: run: | flake8 . --max-line-length=100 --ignore=E731 - # publish: - # if: github.event_name == 'release' && github.event.action == 'published' - # needs: [style-python] - # name: 📦 Publish to PyPi - # runs-on: ubuntu-latest - # environment: - # name: release - # url: https://pypi.org/p/inventree-zebra-plugin - # permissions: - # id-token: write - # - # steps: - # - name: Checkout - # uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # pin@v3.5.3 - # - # - name: Setup python - # uses: actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1 # pin@v4.7.0 - # with: - # python-version: "3.10" - # - # - name: Install build dependencies - # run: pip install --upgrade wheel setuptools twine build - # - # - name: Build pip package - # run: python3 -m build - # - # - name: Publish package to PyPI - # uses: pypa/gh-action-pypi-publish@f8c70e705ffc13c3b4d1221169b84f12a75d6ca8 # pin@v1.8.8 + publish: + # if: github.event_name == 'release' && github.event.action == 'published' + needs: [style-python] + name: 📦 Publish to PyPi + runs-on: ubuntu-latest + environment: + name: release + url: https://pypi.org/p/inventree-zebra-plugin + permissions: + id-token: write + + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Setup python + uses: actions/setup-python@v5 + with: + python-version: "3.10" + + - name: Install build dependencies + run: pip install --upgrade wheel setuptools twine build + + - name: Build pip package + run: python3 -m build + + - name: Publish package to PyPI + uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/inventree_zebra/version.py b/inventree_zebra/version.py index 813371e..525a135 100644 --- a/inventree_zebra/version.py +++ b/inventree_zebra/version.py @@ -1 +1 @@ -ZEBRA_PLUGIN_VERSION = "0.4.0" +ZEBRA_PLUGIN_VERSION = "0.5.0"