✨ Document WindowEngine #57
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Loop | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
paths: | |
- Loop/** | |
permissions: | |
contents: write | |
jobs: | |
build_with_signing: | |
name: Build Loop | |
runs-on: macos-13 | |
steps: | |
- name: Checkout repository | |
uses: actions/[email protected] | |
- name: Switch Xcode version | |
run: | | |
sudo xcode-select -s "/Applications/Xcode_15.0.app" | |
/usr/bin/xcodebuild -version | |
- name: Install dependencies | |
run: | | |
brew install xcbeautify create-dmg | |
- name: Build Loop.app | |
run: | | |
make debug | |
- name: Upload build | |
uses: actions/[email protected] | |
with: | |
name: Loop Build | |
path: | | |
Build/Loop.zip | |
Build/Loop.dmg |