27 lines
481 B
YAML
27 lines
481 B
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
name: NickelMenu
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
with:
|
|
submodules: true
|
|
- name: Build
|
|
uses: docker://ghcr.io/pgaskin/nickeltc:1.0
|
|
with:
|
|
entrypoint: make
|
|
args: all koboroot
|
|
- name: Upload
|
|
uses: actions/upload-artifact@v5
|
|
with:
|
|
name: NickelMenu
|
|
path: KoboRoot.tgz
|