From 7e30586938fc23b8faa5e31fea3e3f17dc03b836 Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Wed, 28 Feb 2024 13:22:53 +0800 Subject: [PATCH] ci(release): Make sure LICENSE and NOTICE files are included (#4283) Signed-off-by: Xuanwo --- scripts/release.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/release.py b/scripts/release.py index e549d9a5025d..f233933ec343 100755 --- a/scripts/release.py +++ b/scripts/release.py @@ -34,6 +34,10 @@ def archive_package(path): ls_command = [ "git", "ls-files", + # Make sure LICENSE and NOTICE files are included. + "LICENSE", + "NOTICE", + # Always include core. "core", f"{path}", f"{get_package_dependence(path)}",