summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yaml
diff options
context:
space:
mode:
authorseth <[email protected]>2024-01-25 11:12:57 -0500
committerseth <[email protected]>2024-01-25 11:16:13 -0500
commit4cece44fbd22a3935bb5555b4f08f5ecf3599740 (patch)
tree8bd48a794a61228066c8ddeaebb6555c49516967 /.github/workflows/build.yaml
parent6a0a5b46c633f12ca0e754353b6a6f8818915ed8 (diff)
ci: use docker actions
Diffstat (limited to '.github/workflows/build.yaml')
-rw-r--r--.github/workflows/build.yaml16
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 0461008..88bde0e 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -13,7 +13,7 @@ env:
jobs:
akmods:
- name: Akmods Image
+ name: Akmods Layer
permissions:
contents: read
@@ -26,7 +26,7 @@ jobs:
containerfile: ./akmods/Containerfile
context: ./akmods
extra_tags: |
- 39-535
+ type=raw,value=39-535
build_args: |
FEDORA_VERSION=39
NVIDIA_VERSION=535
@@ -53,16 +53,16 @@ jobs:
uses: ./.github/workflows/build-image.yaml
with:
image_name: ${{ matrix.image_name }}
- containerfile: ./Containerfile
- context: .
+ containerfile: ./base/Containerfile
+ context: ./base
extra_tags: |
- ${{ matrix.fedora_version }}
+ type=raw,value=${{ matrix.fedora_version }}
build_args: |
FEDORA_VERSION=${{ matrix.fedora_version }}
IMAGE_FLAVOR=${{ matrix.image_flavor }}
config:
- name: Config layer
+ name: Config layers
permissions:
contents: read
@@ -80,7 +80,7 @@ jobs:
containerfile: ./config/Containerfile
context: ./config
extra_tags: |
- ${{ matrix.fedora_version }}
+ type=raw,value=${{ matrix.fedora_version }}
build_args: |
FEDORA_VERSION=${{ matrix.fedora_version }}
@@ -107,7 +107,7 @@ jobs:
containerfile: ./nvidia/Containerfile
context: ./nvidia
extra_tags: |
- ${{ matrix.fedora_version }}-${{ matrix.nvidia_version }}
+ type=raw,value=${{ matrix.fedora_version }}-${{ matrix.nvidia_version }}
build_args: |
FEDORA_VERSION=${{ matrix.fedora_version }}
IMAGE_FLAVOR=${{ matrix.image_flavor }}