Some checks failed
Mark stable commit / test-unit (push) Has been cancelled
Mark stable commit / test-integration (push) Has been cancelled
Mark stable commit / test-env-virtual (push) Has been cancelled
Mark stable commit / test-env-nix (push) Has been cancelled
Mark stable commit / test-e2e (push) Has been cancelled
Mark stable commit / test-virgin-user (push) Has been cancelled
Mark stable commit / test-virgin-root (push) Has been cancelled
Mark stable commit / mark-stable (push) Has been cancelled
Introduce a dedicated publish-containers workflow triggered after stable releases. Unify container build and publish logic via scripts, add buildx-based multi-tag publishing, default base image resolution, and Arch alias tags for latest/version/stable. https://chatgpt.com/share/693c836b-0b00-800f-9536-9e273abd0fb5
21 lines
598 B
Bash
Executable File
21 lines
598 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
: "${BASE_IMAGE_ARCH:=archlinux:latest}"
|
|
: "${BASE_IMAGE_DEBIAN:=debian:stable-slim}"
|
|
: "${BASE_IMAGE_UBUNTU:=ubuntu:latest}"
|
|
: "${BASE_IMAGE_FEDORA:=fedora:latest}"
|
|
: "${BASE_IMAGE_CENTOS:=quay.io/centos/centos:stream9}"
|
|
|
|
resolve_base_image() {
|
|
local distro="$1"
|
|
case "$distro" in
|
|
arch) echo "$BASE_IMAGE_ARCH" ;;
|
|
debian) echo "$BASE_IMAGE_DEBIAN" ;;
|
|
ubuntu) echo "$BASE_IMAGE_UBUNTU" ;;
|
|
fedora) echo "$BASE_IMAGE_FEDORA" ;;
|
|
centos) echo "$BASE_IMAGE_CENTOS" ;;
|
|
*) echo "ERROR: Unknown distro '$distro'" >&2; exit 1 ;;
|
|
esac
|
|
}
|