quakespasm/.github/workflows/auto-build.yml
Shpoike 3fb6be5d16
Update auto-build.yml
github no longer allows macos10.15 so update to the latest fad
2023-07-13 07:53:35 +01:00

29 lines
499 B
YAML

name: Auto Build
on:
push
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [macos-12]
steps:
- uses: actions/checkout@v2
- name: macOS Build
if: runner.os == 'macOS'
run: |
cd MacOSX
./build-macos.sh
- name: Upload macOS artifact
uses: actions/upload-artifact@v2
if: runner.os == 'macOS'
with:
name: macos
path: |
MacOSX/build/Release/*.zip