Skip to content

chore: remove Xcode user files from tracking #1

chore: remove Xcode user files from tracking

chore: remove Xcode user files from tracking #1

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Xcode
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: latest-stable
- name: Build
run: |
xcodebuild -project Spokn.xcodeproj \
-scheme Spokn \
-configuration Release \
-derivedDataPath build \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \
build
- name: Run Tests
run: |
xcodebuild -project Spokn.xcodeproj \
-scheme Spokn \
-configuration Debug \
-derivedDataPath build \
CODE_SIGN_IDENTITY="" \
CODE_SIGNING_REQUIRED=NO \
CODE_SIGNING_ALLOWED=NO \
test
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: Spokn.app
path: build/Build/Products/Release/Spokn.app