name: Build KabOS Image on: push: branches: - main workflow_dispatch: jobs: build: runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v3 - name: Show files (debug) run: | echo "Listing repo contents:" ls -la - name: Build KabOS Image run: | echo "Building KabOS..." docker build -t kabos -f Containerfile.nvidia . - name: Done run: echo "Build complete"