From 4297a19020caa46b4241b93ada1764aa7c44411e Mon Sep 17 00:00:00 2001 From: frostime Date: Mon, 13 Nov 2023 09:59:25 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=8E=20ci(make-zip):=20=E4=BC=98?= =?UTF-8?q?=E5=8C=96make-zip=E7=9A=84=E8=8C=83=E5=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/make-zip.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/make-zip.sh b/script/make-zip.sh index eb406cc..670fb8b 100644 --- a/script/make-zip.sh +++ b/script/make-zip.sh @@ -1,7 +1,7 @@ #!/bin/bash # 搜寻 png md css json 文件 -find . -type f \( -name "*.png" -o -name "*.md" -o -name "*.json" \) -print > file-list.txt +find . -type f \( -name "icon.png" -o -name "preview.png" -o -name "LICENSE" -o -name "*.md" -o -name "*.json" \) -print > file-list.txt # 打包所有文件为 package.zip zip package.zip -@ < file-list.txt