From fc90d1aa34306a119e1590ae8234e7d8ac28a999 Mon Sep 17 00:00:00 2001 From: TrueNine Date: Tue, 24 Feb 2026 22:23:47 +0800 Subject: [PATCH] ci(build-gui): simplify artifact upload paths - Remove redundant gui/src-tauri prefix from all artifact upload paths - Standardize Windows executable upload paths to use target/ base directory - Standardize Linux bundle upload paths (AppImage, deb, rpm) to use target/ base directory - Standardize macOS bundle upload paths (dmg) to use target/ base directory - Improves path consistency and reduces verbosity in workflow configuration --- .github/workflows/build-gui-all.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-gui-all.yml b/.github/workflows/build-gui-all.yml index 2478fae8..ef9988be 100644 --- a/.github/workflows/build-gui-all.yml +++ b/.github/workflows/build-gui-all.yml @@ -43,8 +43,8 @@ jobs: with: name: gui-${{ matrix.os }} path: | - gui/src-tauri/target/*/release/bundle/**/*.exe - gui/src-tauri/target/release/bundle/**/*.exe + target/*/release/bundle/**/*.exe + target/release/bundle/**/*.exe if-no-files-found: error - name: Upload Linux artifacts @@ -53,12 +53,12 @@ jobs: with: name: gui-${{ matrix.os }} path: | - gui/src-tauri/target/*/release/bundle/**/*.AppImage - gui/src-tauri/target/*/release/bundle/**/*.deb - gui/src-tauri/target/*/release/bundle/**/*.rpm - gui/src-tauri/target/release/bundle/**/*.AppImage - gui/src-tauri/target/release/bundle/**/*.deb - gui/src-tauri/target/release/bundle/**/*.rpm + target/*/release/bundle/**/*.AppImage + target/*/release/bundle/**/*.deb + target/*/release/bundle/**/*.rpm + target/release/bundle/**/*.AppImage + target/release/bundle/**/*.deb + target/release/bundle/**/*.rpm if-no-files-found: error - name: Upload macOS artifacts @@ -67,6 +67,6 @@ jobs: with: name: gui-${{ matrix.os }} path: | - gui/src-tauri/target/*/release/bundle/**/*.dmg - gui/src-tauri/target/release/bundle/**/*.dmg + target/*/release/bundle/**/*.dmg + target/release/bundle/**/*.dmg if-no-files-found: error