fix(ci): target macOS runner explicitly for iOS builds
The 'self-hosted' label alone matched the Linux runner which cannot build iOS. Change to [self-hosted, macos] so only the Mac builder on-prem picks up iOS build jobs.
This commit is contained in:
@@ -201,7 +201,7 @@ jobs:
|
|||||||
# if Apple signing secrets are not configured.
|
# if Apple signing secrets are not configured.
|
||||||
build-ios:
|
build-ios:
|
||||||
name: Build iOS
|
name: Build iOS
|
||||||
runs-on: self-hosted
|
runs-on: [self-hosted, macos]
|
||||||
needs: [test]
|
needs: [test]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|||||||
@@ -164,7 +164,7 @@ jobs:
|
|||||||
# if Apple signing secrets are not configured.
|
# if Apple signing secrets are not configured.
|
||||||
build-ios:
|
build-ios:
|
||||||
name: Build iOS Release
|
name: Build iOS Release
|
||||||
runs-on: self-hosted
|
runs-on: [self-hosted, macos]
|
||||||
needs: [test]
|
needs: [test]
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
|
|||||||
Reference in New Issue
Block a user