build-install-cadius-action/action.yml

11 lines
326 B
YAML
Raw Normal View History

2021-07-23 16:12:10 +00:00
name: 'Build and Install Cadius'
description: 'Builds and installs the Cadius tool for Apple II ProDOS disk images'
runs:
using: "composite"
steps:
- run: >
git clone https://github.com/mach-kernel/cadius /tmp/cadius &&
make -C /tmp/cadius &&
sudo make -C /tmp/cadius install
2021-07-23 16:14:55 +00:00
shell: bash