File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,20 +23,21 @@ jobs:
2323 with :
2424 python-version : " 3.12"
2525
26- - name : Install Hatch
27- run : |
28- python -m pip install --upgrade pip
29- pip install hatch
30-
31- - name : Build with Hatch
32- run : |
33- hatch build
26+ - name : Install pypa/build
27+ run : >-
28+ python -m
29+ pip install
30+ build
31+ --user
32+
33+ - name : Build a binary wheel and a source tarball
34+ run : >-
35+ python -m
36+ build
37+ --sdist
38+ --wheel
39+ --outdir dist/
40+ .
3441
3542 - name : Publish distribution to PyPI
3643 uses : pypa/gh-action-pypi-publish@release/v1
37- with :
38- packages_dir : dist
39- verbose : true
40-
41- - name : Clean distribution directory
42- run : rm -rf dist/*
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " ariadne-lambda"
7- version = " 0.3.0 "
7+ version = " 0.3.1 "
88description = ' This package extends the Ariadne library by adding a GraphQL HTTP handler designed for use in AWS Lambda environments.'
99readme = " README.md"
1010requires-python = " >=3.8"
You can’t perform that action at this time.
0 commit comments