mirror of
https://github.com/samsonjs/vibetunnel.git
synced 2026-04-20 13:45:54 +00:00
Remove unnecessary iOS CI triggers on web changes
The iOS app is a native client that connects to VibeTunnel servers and doesn't embed any web code. It only needs to rebuild when iOS-specific files change, not when web files are modified. This optimization will save CI time by avoiding unnecessary iOS builds when only web UI changes are made. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
4a75129ca6
commit
ad6f335c17
1 changed files with 1 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
|
@ -67,5 +67,5 @@ jobs:
|
|||
always() &&
|
||||
!contains(needs.*.result, 'failure') &&
|
||||
!contains(needs.*.result, 'cancelled') &&
|
||||
(needs.changes.outputs.ios == 'true' || needs.changes.outputs.web == 'true' || github.event_name == 'workflow_dispatch')
|
||||
(needs.changes.outputs.ios == 'true' || github.event_name == 'workflow_dispatch')
|
||||
uses: ./.github/workflows/ios.yml
|
||||
Loading…
Reference in a new issue