Skip to content

Add authentication before checking for updates #11

Add authentication before checking for updates

Add authentication before checking for updates #11

Workflow file for this run

name: Pull Request Build
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: macos-14
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Xcode select
run: sudo xcode-select -s '/Applications/Xcode_15.4.app/Contents/Developer'
- name: Build for iOS Simulator
run: xcodebuild build -scheme ETDistribution -sdk iphonesimulator -destination 'generic/platform=iOS Simulator'
- name: Build for iOS
run: xcodebuild build -scheme ETDistribution -sdk iphoneos -destination 'generic/platform=iOS'
- name: Build TestApp
run: cd Example && xcodebuild build -scheme DemoApp -sdk iphonesimulator -destination 'generic/platform=iOS Simulator' -project DemoApp.xcodeproj