We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3c3ba58 commit 0499e78Copy full SHA for 0499e78
scripts/publish_lib.py
@@ -3,6 +3,7 @@
3
4
from pathlib import Path
5
from shutil import rmtree
6
+from subprocess import run
7
import toml
8
import init
9
import sys
@@ -41,6 +42,8 @@ def set_package_version(version: int):
41
42
ProjectBuilder(source_dir='.').build(
43
distribution='wheel', output_directory='dist')
44
45
+run(['unzip', '-l', 'dist/*.whl'])
46
+
47
release_id = create_release(
48
version=version, access_token=access_token, tag_prefix="version")
49
upload_release_asset(
0 commit comments