chore: test build version after export

This commit is contained in:
aclist 2026-05-24 18:56:41 +09:00
parent 6ec77f6542
commit 26ee560cb4
2 changed files with 7 additions and 1 deletions

View File

@ -110,7 +110,7 @@ class RightPanel(Gtk.Box):
def _on_lan_page_init(self, emitter: "Emitter") -> None:
self.filters_vbox.set_sensitive(False)
self.refresh_button.set_sensitive(False)
#self.refresh_button.set_sensitive(False)
def _on_servers_loaded(self, emitter: "Emitter", context: "ServerTab") -> None:
# TODO: similar logic on notebook page change

View File

@ -45,3 +45,9 @@ if proc.returncode == 0:
with tarfile.open(tarpath, "w:gz") as tar:
tar.add(release_exe, arcname=appname)
print(f"Wrote tarfile to '{tarpath}'")
proc = subprocess.run([release_exe, "-v"], capture_output=True, text=True)
assert proc.stdout.rstrip() == version
release_exe.unlink()
Path(wheel).unlink()