Skip to content

Build iOS app

Build iOS app #81

Workflow file for this run

name: "Build iOS app"
on:
workflow_dispatch:
branches: [main]
jobs:
build_with_signing:
runs-on: macos-latest
steps:
- name: Check Xcode version
run: /usr/bin/xcodebuild -version
- name: Checkout repository
uses: actions/checkout@v3
- name: Clean Xcode project
run: xcodebuild clean -scheme UpgradeUpsell
- name: Debug content of build directory
run: ls -R $RUNNER_TEMP
- name: Upload archive
uses: actions/upload-artifact@v3
with:
name: archive
path: ${{ runner.temp }}/UpgradeUpsell.xcarchive
retention-days: 3