fix: update device model reporting for iPhone, iPad, Apple Watch and Apple TV devices #104
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test macOS | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: macos-12 | |
steps: | |
- name: Checkout Project | |
uses: actions/checkout@v4 | |
- name: "Select Latest Xcode" | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest-stable | |
- name: "Set SSH key" | |
uses: webfactory/ssh-agent@v0.8.0 | |
with: | |
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }} | |
- name: "Carthage Cached Bootstrap" | |
uses: DevCycleHQ/carthage-bootstrap@xcframeworks2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
use-xcframeworks: true | |
- name: Fastlane macOS Tests | |
run: fastlane mac tests | |
env: | |
DEVELOPER_APP_ID: '${{ secrets.DEVELOPER_APP_ID }}' | |
MATCH_PASSWORD: '${{ secrets.MATCH_PASSWORD }}' | |
TEMP_KEYCHAIN_PASSWORD: '${{ secrets.TEMP_KEYCHAIN_PASSWORD }}' | |
TEMP_KEYCHAIN_USER: '${{ secrets.TEMP_KEYCHAIN_USER }}' | |
APPLE_KEY_ID: '${{ secrets.APPLE_KEY_ID }}' | |
APPLE_ISSUER_ID: '${{ secrets.APPLE_ISSUER_ID }}' | |
APPLE_KEY_CONTENT: '${{ secrets.APPLE_KEY_CONTENT }}' |