Skip to content

Build the Docker Container #2

Build the Docker Container

Build the Docker Container #2

Workflow file for this run

name: Build the Docker Container
on:
workflow_dispatch:
inputs:
tag:
description: 'Docker Release Tag'
required: true
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Checkout source
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Set environment variable
run: |
echo "DOCKER_CONTAINER_VERSION=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
- name: Cook the container
run: |
cd docker && bash build-container.sh || exit 1
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: Kernel-Builder-${{ github.event.inputs.tag }}
path: docker/*.zip