Skip to content

Feature/add scrum pspo 1 #47

Feature/add scrum pspo 1

Feature/add scrum pspo 1 #47

Workflow file for this run

name: "Build iOS app"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
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@v4
- name: check Xcode List
run: /usr/bin/xcodebuild -list
- name: build project (compile only)
run: |
xcodebuild -scheme "CloudMaster" \
-sdk iphonesimulator \
-configuration Debug \
clean build
## Disable export and upload for now ##
# - name: export ipa
# env:
# EXPORT_OPTIONS_PLIST: ${{ secrets.EXPORT_OPTIONS_PLIST }}
# run: |
# xcodebuild -exportArchive -archivePath $RUNNER_TEMP/cloudmaster.xcarchive -exportPath $RUNNER_TEMP/build
# - name: Upload application
# uses: actions/upload-artifact@v4
# with:
# name: app
# path: ${{ runner.temp }}/build
# retention-days: 3