aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.github/workflows/test.yml
diff options
context:
space:
mode:
author苏向夜 <fu050409@163.com>2026-01-18 17:40:57 +0800
committer苏向夜 <fu050409@163.com>2026-01-18 17:40:57 +0800
commit8e903d97a5bba2d3e67996ba0b1ebe04e96d98ec (patch)
tree26a341f670563492d89e338f173a106343526f29 /.github/workflows/test.yml
parent275612a0a39936584bfef7250a65a6a602751fe9 (diff)
downloadDropOut-8e903d97a5bba2d3e67996ba0b1ebe04e96d98ec.tar.gz
DropOut-8e903d97a5bba2d3e67996ba0b1ebe04e96d98ec.zip
ci(semifold): fix artifact upload conditions
Diffstat (limited to '.github/workflows/test.yml')
-rw-r--r--.github/workflows/test.yml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index f89dcde..402de0e 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -112,9 +112,9 @@ jobs:
with:
name: dropout-linux-${{ matrix.wayland && 'arch' || 'ubuntu' }}-${{ steps.slug.outputs.sha8 }}
path: |
- src-tauri/target/debug/bundle/appimage/*.AppImage
- src-tauri/target/debug/bundle/deb/*.deb
- src-tauri/target/debug/dropout
+ target/debug/bundle/appimage/*.AppImage
+ target/debug/bundle/deb/*.deb
+ target/debug/dropout
retention-days: 5
- name: Upload Artifact (Windows)
@@ -123,9 +123,9 @@ jobs:
with:
name: dropout-windows-${{ steps.slug.outputs.sha8 }}
path: |
- src-tauri/target/debug/bundle/msi/*.msi
- src-tauri/target/debug/bundle/nsis/*.exe
- src-tauri/target/debug/dropout.exe
+ target/debug/bundle/msi/*.msi
+ target/debug/bundle/nsis/*.exe
+ target/debug/dropout.exe
retention-days: 5
- name: Upload Artifact (macOS)
@@ -134,6 +134,6 @@ jobs:
with:
name: dropout-macos-${{ steps.slug.outputs.sha8 }}
path: |
- src-tauri/target/debug/bundle/dmg/*.dmg
- src-tauri/target/debug/bundle/macos/DropOut.app
+ target/debug/bundle/dmg/*.dmg
+ target/debug/bundle/macos/DropOut.app
retention-days: 5