Skip to content

Commit

Permalink
.github: Add an action for building docker images on-demand
Browse files Browse the repository at this point in the history
There isn't a clear way to tell when the image should be rebuilt
automatically. In theory it should be when the relevant debian package
gets an update or when a new Debian version is released. In practice,
these are annoying to track, so the action is to be invoked on demand.
  • Loading branch information
krnowak committed Sep 11, 2024
1 parent 2846a74 commit 9bd9763
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/build-other-docker-image.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Build other docker image
on:
workflow_dispatch:
inputs:
image_name:
type: string
description: "Image name (like targetcli-fb), name of the other-dockerfiles subdirectory."
required: true

env:
REGISTRY: ghcr.io
ORG: flatcar

jobs:
docker:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:

- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Setup QEMU
uses: docker/setup-qemu-action@v3
with:
platforms: linux/amd64,linux/arm64

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
with:
context: other-dockerfiles/${{ inputs.image_name }}
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ env.REGISTRY }}/${{ env.ORG }}/${{ inputs.image_name }}:latest
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 9bd9763

Please sign in to comment.