From ed4311eae938fee9c83c5310fbc48a708941c4c4 Mon Sep 17 00:00:00 2001 From: Horis <8674809+821938089@users.noreply.github.com> Date: Thu, 25 Jul 2024 09:22:00 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ea7f28940..430818d49 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -162,7 +162,17 @@ jobs: path: apk/ - working-directory: apk/ - run: mv */*.apk . ;rm -rf */ + run: | + mv */*.apk . + rm -rf */ + + for file in `ls *.apk`; do + if [[ "$file" == *原包名* ]]; then + mv "$file" $(echo $file | sed s/原包名/release/) + else + mv "$file" $(echo $file | sed s/共存/releaseA/) + fi + done - name: Delete Pre-Release run: gh release delete beta -y --cleanup-tag