Skip to content

Commit be7d4e8

Browse files
Update CI/CD
1 parent 13ce607 commit be7d4e8

2 files changed

Lines changed: 16 additions & 15 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff 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/*

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "ariadne-lambda"
7-
version = "0.3.0"
7+
version = "0.3.1"
88
description = 'This package extends the Ariadne library by adding a GraphQL HTTP handler designed for use in AWS Lambda environments.'
99
readme = "README.md"
1010
requires-python = ">=3.8"

0 commit comments

Comments
 (0)