mirror of
https://github.com/m1k1o/neko.git
synced 2025-04-29 02:16:21 +02:00
84 lines
2.3 KiB
YAML
84 lines
2.3 KiB
YAML
name: Build and Publish Base Image
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
dockerfile:
|
|
required: false
|
|
type: string
|
|
default: "Dockerfile"
|
|
description: "The Dockerfile to use for building the image."
|
|
flavor:
|
|
required: false
|
|
type: string
|
|
default: ""
|
|
description: "The flavor of the image to build. This is used to determine the base image and the Dockerfile to use."
|
|
platforms:
|
|
required: false
|
|
type: string
|
|
default: "linux/amd64"
|
|
description: "The platforms to build for."
|
|
|
|
env:
|
|
FLAVOR_PREFIX: ${{ inputs.flavor && format('{0}-', inputs.flavor) || '' }}
|
|
|
|
jobs:
|
|
build-client:
|
|
uses: ./.github/workflows/client_build.yml
|
|
|
|
build-base:
|
|
name: Build and Publish Base Image
|
|
runs-on: ubuntu-latest
|
|
needs: [ build-client ]
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Download client dist
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: client
|
|
path: client/dist
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
uses: docker/metadata-action@v5
|
|
id: meta
|
|
with:
|
|
images: ghcr.io/${{ github.repository }}/${{ env.FLAVOR_PREFIX }}base
|
|
tags: |
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
type=semver,pattern={{major}}
|
|
type=sha,format=long
|
|
|
|
- name: Log in to the Container registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Generate base Dockerfile
|
|
env:
|
|
RUNTIME_DOCKERFILE: ${{ inputs.dockerfile }}
|
|
run: go run docker/main.go -i Dockerfile.tmpl -o Dockerfile -client client/dist
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: ./
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
platforms: ${{ inputs.platforms || 'linux/amd64' }}
|