Skip to content

Merge pull request #30 from ngageoint/psolt/xcode_cloud #37

Merge pull request #30 from ngageoint/psolt/xcode_cloud

Merge pull request #30 from ngageoint/psolt/xcode_cloud #37

Workflow file for this run

name: Build Archive
on:
push:
branches:
- master
pull_request:
jobs:
build:
runs-on: macOS-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Install Utilities
run: |
brew install automake
brew install libtool
- name: Install
run: |
pod repo update
pod install
- name: Build
run: xcodebuild -workspace mapcache-ios.xcworkspace -scheme mapcache-ios -allowProvisioningUpdates -configuration AppStoreDistribution archive -archivePath buildArchive/MapCache.xcarchive CODE_SIGNING_ALLOWED=NO
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: MapCache.xcarchive
path: buildArchive/MapCache.xcarchive