Skip to content

Commit 51f96d8

Browse files
committed
Support attestations
1 parent 275a321 commit 51f96d8

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

Makefile

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,16 +75,18 @@ dev-venv-install:
7575
# Distribution
7676
################################################################################
7777

78-
.PHONY: dist-build dist-prebuild dist-publish
78+
.PHONY: dist-attest dist-build dist-prebuild dist-publish
79+
80+
dist-attest: dist-build
81+
${VENV} python -m pypi_attestations sign ./dist/*
7982

8083
dist-build: dist-prebuild
8184
find ./dist -type f -delete
8285
${VENV} python -m build
83-
${VENV} python -m pypi_attestations sign ./dist/*
8486

8587
dist-prebuild:
8688
${VENV} python ./prebuild.py
8789

88-
dist-publish: dist-build
90+
dist-publish: dist-attest
8991
${VENV} twine check ./dist/*
9092
${VENV} twine upload -r sqlparams --attestations --skip-existing ./dist/*

0 commit comments

Comments
 (0)