mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-09 23:11:39 +00:00
ec7f807ba1
Rename macOS workflow to match with others
26 lines
412 B
YAML
26 lines
412 B
YAML
name: macOS CI
|
|
|
|
on:
|
|
push
|
|
|
|
jobs:
|
|
build:
|
|
name: Build macOS
|
|
runs-on: macos-12
|
|
strategy:
|
|
fail-fast: false
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: macOS Build
|
|
run: |
|
|
cd MacOSX
|
|
./build-macos.sh
|
|
|
|
- name: Upload macOS artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: macos
|
|
path: |
|
|
MacOSX/build/Release/*.zip
|