Compare commits
2 Commits
5a51da612f
...
e740d2cb1e
| Author | SHA1 | Date |
|---|---|---|
|
|
e740d2cb1e | |
|
|
5721b7720c |
|
|
@ -3,4 +3,22 @@ name: Build KabOS Image
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repo
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Show files
|
||||||
|
run: ls -la
|
||||||
|
|
||||||
|
- name: Build KabOS
|
||||||
|
run: docker build -t kabos -f Containerfile.nvidia .
|
||||||
|
|
||||||
|
- name: Done
|
||||||
|
run: echo "Build complete"
|
||||||
Loading…
Reference in New Issue