Skip to content

Small UI/bug fix

Small UI/bug fix #15

Workflow file for this run

name: Build
on: [push, pull_request, workflow_dispatch]
jobs:
build-wuhb:
runs-on: ubuntu-latest
name: Build WUHB
steps:
- name: Checkout
uses: actions/checkout@v7
with:
submodules: recursive
- name: Setup Docker
run: docker build --tag themiify-image .
- name: Build
uses: addnab/docker-run-action@v3
with:
image: themiify-image
options: --name themiify-container
run: |
powerpc-eabi-cmake -S . -B build
cmake --build build
- name: Copy from container to host
uses: tj-actions/docker-cp@v2
with:
container: themiify-container
source: /project/build/themiify.wuhb
destination: themiify.wuhb
- name: Upload
uses: actions/upload-artifact@v7
with:
name: themiify.wuhb
path: themiify.wuhb
if-no-files-found: error