diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c45f83d..4aad1f8 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -36,7 +36,7 @@ jobs: make install-deps-packaging - name: Build package - run: make package version=${{ github.ref_name }} + run: make build version=${{ github.ref_name }} - name: Upload Pipeline Artifacts uses: actions/upload-artifact@v3 diff --git a/Makefile b/Makefile index 047d6c9..4c5fc97 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,7 @@ define BUILD echo version = \"$(version)\" > $1/__version__.py && \ stubgen . --export-less && \ $(PYTHON) -m build --wheel + twine check dist/* endef define UPLOAD diff --git a/pyproject.toml b/pyproject.toml index bb327e0..755bb86 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,6 +56,7 @@ dev = [ ] packaging = [ + "twine", "build", "pyc_wheel", "mypy",