upload wheels before sdist (#376)

This commit is contained in:
Alex Gaynor 2022-08-02 08:29:16 -04:00 committed by GitHub
parent 14db131422
commit 8e4aa95422
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -132,8 +132,8 @@ def release(version):
github_token, version
)
run("twine", "upload", "-s", *packages)
run("twine", "upload", *github_actions_wheel_paths)
run("twine", "upload", "-s", *packages)
if __name__ == "__main__":