From 5721b7720c129ba293c675751620001120182992 Mon Sep 17 00:00:00 2001 From: mkm1971 Date: Mon, 27 Apr 2026 01:40:41 +0400 Subject: [PATCH] Fix CI + enable auto build --- .github/workflows/build-image.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index fa062db..c469b94 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -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" \ No newline at end of file