ci: restrict build workflow to dev branch only (#3255)

This commit is contained in:
Stephen Zhou 2025-03-23 17:31:30 +08:00 committed by GitHub
parent 2f8f13738c
commit 4bdd6bac4e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -2,12 +2,12 @@ name: Build iOS IPA
on:
push:
branches: [dev, main]
branches: [dev]
paths:
- "apps/mobile/**"
- "pnpm-lock.yaml"
pull_request:
branches: [dev, main]
branches: [dev]
paths:
- "apps/mobile/**"
- "pnpm-lock.yaml"