Skip to content

meta: add distrib script and Gh action #3

meta: add distrib script and Gh action

meta: add distrib script and Gh action #3

Workflow file for this run

name: Nightly Build
on: [push]
jobs:
ubuntu:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
run: |
sudo apt-get update -y && \
sudo apt-get install -y build-essential git ninja-build nasm gcc-multilib
sudo bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)" llvm 18
- name: Build
run: |
./build.sh dist
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: bootx64.efi
path: .cutekit/dist/bootx64.efi
if-no-files-found: error