ci: add continue-on-error to artifact upload steps

Prevents artifact storage quota issues from blocking the entire build.
Build jobs will succeed even if upload fails, allowing release job to proceed.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jim800121chen 2026-03-08 00:11:29 +08:00
parent eb68ab28f3
commit ff7dfb3562
2 changed files with 4 additions and 0 deletions

View File

@ -55,6 +55,7 @@ jobs:
- name: Upload macOS artifact
uses: actions/upload-artifact@v4
continue-on-error: true
with:
name: EdgeAI-Installer-macOS
path: ${{ env.WORK_DIR }}/installer/build/bin/EdgeAI-Installer-macOS.zip
@ -125,6 +126,7 @@ jobs:
- name: Upload Windows artifact
uses: actions/upload-artifact@v4
continue-on-error: true
with:
name: EdgeAI-Installer-Windows
path: edge-ai-platform/installer/build/bin/EdgeAI-Installer-Windows.zip

View File

@ -55,6 +55,7 @@ jobs:
- name: Upload macOS artifact
uses: actions/upload-artifact@v4
continue-on-error: true
with:
name: EdgeAI-Installer-macOS
path: ${{ env.WORK_DIR }}/installer/build/bin/EdgeAI-Installer-macOS.zip
@ -125,6 +126,7 @@ jobs:
- name: Upload Windows artifact
uses: actions/upload-artifact@v4
continue-on-error: true
with:
name: EdgeAI-Installer-Windows
path: edge-ai-platform/installer/build/bin/EdgeAI-Installer-Windows.zip