diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 434f29e..3455395 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -23,20 +23,21 @@ jobs: with: python-version: "3.12" - - name: Install Hatch - run: | - python -m pip install --upgrade pip - pip install hatch - - - name: Build with Hatch - run: | - hatch build + - 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 distribution to PyPI uses: pypa/gh-action-pypi-publish@release/v1 - with: - packages_dir: dist - verbose: true - - - name: Clean distribution directory - run: rm -rf dist/* diff --git a/pyproject.toml b/pyproject.toml index 5ecfd44..c02f39e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "ariadne-lambda" -version = "0.3.0" +version = "0.3.1" description = 'This package extends the Ariadne library by adding a GraphQL HTTP handler designed for use in AWS Lambda environments.' readme = "README.md" requires-python = ">=3.8"