From 5569bf9a623a2436d46d73450d719ab2ad03ba71 Mon Sep 17 00:00:00 2001 From: HapeLee <63206378+HapeLee@users.noreply.github.com> Date: Fri, 19 Jun 2026 00:25:53 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20auto-release=20?= =?UTF-8?q?=E6=9C=AA=E5=8F=91=E5=B8=83=20mapping=20=E6=96=87=E4=BB=B6?= =?UTF-8?q?=E7=9A=84=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/auto-release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/auto-release.yml b/.github/workflows/auto-release.yml index a82b49c5a..fa649c218 100644 --- a/.github/workflows/auto-release.yml +++ b/.github/workflows/auto-release.yml @@ -185,14 +185,15 @@ jobs: COMMIT_NUMBER: ${{ env.COMMIT_NUMBER_VAL }} APP_VERSION_NAME: ${{ env.VERSIONL }} - - name: Move Missing Rules Files + - name: Move Mapping Files if: matrix.type == 'release' run: | - echo "移动missing_rules.txt文件" + echo "移动 mapping 相关文件" MAPPING_DIR="${{ github.workspace }}/mapping" mkdir -p "$MAPPING_DIR" # 使用 find 代替 ls,避免参数列表过长 find ${{ github.workspace }}/app/build/outputs/mapping/ -name "missing_rules.txt" -exec mv {} "$MAPPING_DIR/missing_rules.txt" \; + find ${{ github.workspace }}/app/build/outputs/mapping/ -name "mapping.txt" -exec mv {} "$MAPPING_DIR/mapping.txt" \; - name: Upload Missing Rules File To Artifact if: matrix.type == 'release'