mirror of
https://github.com/explit7/Psion-ROM.git
synced 2026-01-31 04:03:32 +00:00
29 lines
444 B
YAML
29 lines
444 B
YAML
name: build
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ main ]
|
|
push:
|
|
branches: [ main ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
macos-build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Package the ROMs
|
|
run: scripts/build.sh
|
|
|
|
- name: Archive the binary
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
path: build/mame-roms.zip
|
|
if-no-files-found: error
|