diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml new file mode 100644 index 0000000..fa062db --- /dev/null +++ b/.github/workflows/build-image.yml @@ -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" \ No newline at end of file