From df1d7819e16ce351c72ec3294125456f7d8d6b9d Mon Sep 17 00:00:00 2001 From: Yukino_fox Date: Sat, 28 Mar 2026 10:25:50 +0800 Subject: [PATCH] =?UTF-8?q?ci(workflows):=20=E7=AE=80=E5=8C=96=E6=9E=84?= =?UTF-8?q?=E5=BB=BA=E4=BA=A7=E7=89=A9=E7=9A=84=E5=8F=91=E5=B8=83=E8=B7=AF?= =?UTF-8?q?=E5=BE=84=E6=A8=A1=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将特定平台的构建产物路径模式统一简化为通用的 `artifacts/**/*` 格式,减少维护成本并提高灵活性 --- .github/workflows/build.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b2304f3..0005c85 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -289,11 +289,11 @@ jobs: draft: True prerelease: ${{ contains(needs.parse.outputs.version, '-') }} files: | - artifacts/dist-win/**/*.msi - artifacts/dist-win/**/*.exe - artifacts/dist-mac/**/*.dmg - artifacts/dist-mac/**/*.app.tar.gz - artifacts/dist-linux/**/*.deb - artifacts/dist-linux/**/*.rpm - artifacts/dist-linux/**/*.AppImage - artifacts/dist-android/**/*.apk + artifacts/**/*.msi + artifacts/**/*.exe + artifacts/**/*.dmg + artifacts/**/*.app.tar.gz + artifacts/**/*.deb + artifacts/**/*.rpm + artifacts/**/*.AppImage + artifacts/**/*.apk