-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
.github: Add an action for building docker images on-demand
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
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |