mirror of
https://github.com/k4zmu2a/SpaceCadetPinball.git
synced 2024-11-14 11:15:05 -05:00
182bd93648
* Update SDL and SDL_mixer on macOS * Extend (Intel) Mac compatibility all the way to OS X El Capitan * Update macOS runner due to GitHub deprecation but still use and Xcode version that supports 10.11
23 lines
448 B
YAML
23 lines
448 B
YAML
name: Make Release Builds
|
|
|
|
on: [workflow_dispatch]
|
|
|
|
jobs:
|
|
build-macos:
|
|
runs-on: macos-12
|
|
timeout-minutes: 15
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: master
|
|
|
|
- uses: maxim-lobanov/setup-xcode@v1
|
|
with:
|
|
xcode-version: 13
|
|
|
|
- run: bash build-mac-app.sh
|
|
|
|
- uses: actions/upload-artifact@v4
|
|
with:
|
|
name: mac-build
|
|
path: SpaceCadetPinball-*-mac.dmg
|