Compare commits
2 Commits
5a51da612f
...
e740d2cb1e
| Author | SHA1 | Date |
|---|---|---|
|
|
e740d2cb1e | |
|
|
5721b7720c |
|
|
@ -4,3 +4,21 @@ on:
|
|||
push:
|
||||
branches:
|
||||
- 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