mirror of
https://github.com/jfdelnero/HxCFloppyEmulator.git
synced 2026-07-28 04:06:36 +00:00
26 lines
501 B
YAML
Executable File
26 lines
501 B
YAML
Executable File
name: CI (macOS)
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- '**'
|
|
pull_request:
|
|
paths:
|
|
- '**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build-macos:
|
|
runs-on: macOS-latest
|
|
steps:
|
|
- uses: actions/checkout@master
|
|
- name: Build
|
|
run: cd build && make -j2
|
|
- name: Package
|
|
run: cd build && ./maccreatebundle
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: hxcfloppyemulator-macos-${{ github.sha }}
|
|
path: build/HxCFloppyEmulator.dmg |