We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 275a321 commit 51f96d8Copy full SHA for 51f96d8
Makefile
@@ -75,16 +75,18 @@ dev-venv-install:
75
# Distribution
76
################################################################################
77
78
-.PHONY: dist-build dist-prebuild dist-publish
+.PHONY: dist-attest dist-build dist-prebuild dist-publish
79
+
80
+dist-attest: dist-build
81
+ ${VENV} python -m pypi_attestations sign ./dist/*
82
83
dist-build: dist-prebuild
84
find ./dist -type f -delete
85
${VENV} python -m build
- ${VENV} python -m pypi_attestations sign ./dist/*
86
87
dist-prebuild:
88
${VENV} python ./prebuild.py
89
-dist-publish: dist-build
90
+dist-publish: dist-attest
91
${VENV} twine check ./dist/*
92
${VENV} twine upload -r sqlparams --attestations --skip-existing ./dist/*
0 commit comments