Fix CI + enable auto build

This commit is contained in:
mkm1971 2026-04-27 01:40:41 +04:00
parent db49d39fd7
commit 5721b7720c
1 changed files with 10 additions and 2 deletions

View File

@ -1,6 +1,9 @@
name: Build KabOS Image
on:
push:
branches:
- main
workflow_dispatch:
jobs:
@ -11,10 +14,15 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v3
- name: Build image
- name: Show files (debug)
run: |
echo "Listing repo contents:"
ls -la
- name: Build KabOS Image
run: |
echo "Building KabOS..."
docker build -t kabos .
docker build -t kabos -f Containerfile.nvidia .
- name: Done
run: echo "Build complete"