This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new 7e30586938 ci(release): Make sure LICENSE and NOTICE files are
included (#4283)
7e30586938 is described below
commit 7e30586938fc23b8faa5e31fea3e3f17dc03b836
Author: Xuanwo <[email protected]>
AuthorDate: Wed Feb 28 13:22:53 2024 +0800
ci(release): Make sure LICENSE and NOTICE files are included (#4283)
Signed-off-by: Xuanwo <[email protected]>
---
scripts/release.py | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/scripts/release.py b/scripts/release.py
index e549d9a502..f233933ec3 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)}",