mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-03-25 09:25:50 +00:00
fix: make web artifact download optional in Mac CI
The Mac CI was failing when only Mac files changed because it tried to download web build artifacts that were never created (Node.js CI was skipped). Added continue-on-error to the artifact download step, allowing the Mac build to proceed and build the web frontend itself via the existing build-web-frontend.sh script that's already part of the Xcode build process. This fixes CI failures like the one in PR #153 where Mac-only changes would fail due to missing web artifacts.
This commit is contained in:
parent
f2f5f5f67d
commit
fc6999922f
1 changed files with 1 additions and 0 deletions
1
.github/workflows/mac.yml
vendored
1
.github/workflows/mac.yml
vendored
|
|
@ -140,6 +140,7 @@ jobs:
|
|||
|
||||
- name: Download web build artifacts
|
||||
uses: actions/download-artifact@v4
|
||||
continue-on-error: true
|
||||
with:
|
||||
name: web-build-${{ github.sha }}
|
||||
path: web/
|
||||
|
|
|
|||
Loading…
Reference in a new issue