fix:分开识别产物的路径

This commit is contained in:
spiritlhl
2025-10-31 23:10:51 +08:00
parent 7de4a16ab7
commit 6c4d8e70d7
2 changed files with 14 additions and 8 deletions
+13 -5
View File
@@ -1,4 +1,4 @@
name: Build All Platforms
name: Build All UI APP
on:
push:
@@ -267,13 +267,21 @@ jobs:
exit 1
fi
- name: Upload artifacts
- name: Upload macOS artifacts
if: matrix.platform == 'darwin'
uses: actions/upload-artifact@v4
with:
name: goecs-${{ matrix.name }}-${{ needs.prepare.outputs.version }}
path: |
.build/*.exe
.build/*.tar.gz
path: .build/*.tar.gz
retention-days: 90
if-no-files-found: error
- name: Upload Windows artifacts
if: matrix.platform == 'windows'
uses: actions/upload-artifact@v4
with:
name: goecs-${{ matrix.name }}-${{ needs.prepare.outputs.version }}
path: .build/*.exe
retention-days: 90
if-no-files-found: error