Skip to content

Bump project version to 22 in project.pbxproj #38

Bump project version to 22 in project.pbxproj

Bump project version to 22 in project.pbxproj #38

name: Build Unsigned IPA
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Xcode latest
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build unsigned app
run: |
xcodebuild \
-project Zapp.xcodeproj \
-scheme Zapp \
-configuration Release \
-sdk iphoneos \
BUILD_DIR=$PWD/build \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
clean build