Add CI workflow

This commit is contained in:
mkm1971 2026-04-27 01:32:09 +04:00
parent f11d53a781
commit db49d39fd7
1 changed files with 20 additions and 0 deletions

20
.github/workflows/build-image.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Build KabOS Image
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Build image
run: |
echo "Building KabOS..."
docker build -t kabos .
- name: Done
run: echo "Build complete"