Skip to content

Update build.yml

Update build.yml #7

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: macos-13
steps:
- uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: '14.1.0'
- uses: actions/checkout@v2
- name: Engage!
run: xcodebuild -project Carbon\ CapsBeeper.xcodeproj
- name: Use tar to keep executable permissions
run: cd build/Default && tar czvf CCB.app.tgz *.app
- name: Upload .app
uses: actions/upload-artifact@v2
with:
name: CCB.app.tgz
path: build/Default/CCB.app.tgz