Skip to content

Commit 0499e78

Browse files
committed
add logging
1 parent 3c3ba58 commit 0499e78

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

scripts/publish_lib.py

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
from pathlib import Path
55
from shutil import rmtree
6+
from subprocess import run
67
import toml
78
import init
89
import sys
@@ -41,6 +42,8 @@ def set_package_version(version: int):
4142
ProjectBuilder(source_dir='.').build(
4243
distribution='wheel', output_directory='dist')
4344

45+
run(['unzip', '-l', 'dist/*.whl'])
46+
4447
release_id = create_release(
4548
version=version, access_token=access_token, tag_prefix="version")
4649
upload_release_asset(

0 commit comments

Comments
 (0)