From ff7dfb35626ffac9ab2c0841c37a0bf4fd7a07ba Mon Sep 17 00:00:00 2001 From: jim800121chen Date: Sun, 8 Mar 2026 00:11:29 +0800 Subject: [PATCH] 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 --- .gitea/workflows/build-installer.yaml | 2 ++ .github/workflows/build-installer.yaml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.gitea/workflows/build-installer.yaml b/.gitea/workflows/build-installer.yaml index 5fa39c9..3377a15 100644 --- a/.gitea/workflows/build-installer.yaml +++ b/.gitea/workflows/build-installer.yaml @@ -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 diff --git a/.github/workflows/build-installer.yaml b/.github/workflows/build-installer.yaml index 5fa39c9..3377a15 100644 --- a/.github/workflows/build-installer.yaml +++ b/.github/workflows/build-installer.yaml @@ -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