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:
parent
eb68ab28f3
commit
ff7dfb3562
@ -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
|
||||
|
||||
2
.github/workflows/build-installer.yaml
vendored
2
.github/workflows/build-installer.yaml
vendored
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user