Epple-II/.github/workflows/build.yaml

31 lines
562 B
YAML
Raw Normal View History

2022-11-02 01:00:07 +00:00
---
on:
push:
branches:
- "master"
jobs:
"build-roms":
runs-on: "ubuntu-latest"
steps:
2022-11-02 01:08:39 +00:00
- name: "Prepare runner"
2022-11-02 01:00:07 +00:00
run: |
set -x
2022-11-02 01:08:39 +00:00
sudo apt-get update -qqqq
sudo apt-get upgrade -qqqq
sudo apt-get install -qqqq xa65
2022-11-02 01:00:07 +00:00
- uses: "actions/checkout@v3"
2022-11-02 01:08:39 +00:00
- name: "Build artifacts"
2022-11-02 01:00:07 +00:00
run: |
set -x
cd rom
make
2022-11-02 01:08:39 +00:00
ls -l *.a65
- uses: "actions/upload-artifact@v3"
with:
2022-11-02 01:12:29 +00:00
name: "epple2-roms"
path: "./rom/*.a65"