- Pin all GitHub Actions to commit SHA to prevent supply chain attacks - Enable SLSA provenance attestation (mode=max) and SBOM generation - Add cosign keyless signing for Docker images via GitHub OIDC - Capture and output image digests to GitHub Job Summary - Pin Dockerfile base images to digest (bun:1, golang:1.26.1-alpine, debian:bookworm-slim) - Add SHA256 checksum generation for binary releases (Linux/macOS/Windows) - Update actions/checkout v3->v4, actions/setup-go v3->v5 in release.yml
183 lines
6.2 KiB
YAML
183 lines
6.2 KiB
YAML
name: Publish Docker image (Multi Registries, native amd64+arm64)
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
- '!nightly*'
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: 'Tag name to build (e.g., v0.10.8-alpha.3)'
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
build_single_arch:
|
|
name: Build & push (${{ matrix.arch }}) [native]
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- arch: amd64
|
|
platform: linux/amd64
|
|
runner: ubuntu-latest
|
|
- arch: arm64
|
|
platform: linux/arm64
|
|
runner: ubuntu-24.04-arm
|
|
runs-on: ${{ matrix.runner }}
|
|
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: Check out
|
|
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
|
|
with:
|
|
fetch-depth: ${{ github.event_name == 'workflow_dispatch' && 0 || 1 }}
|
|
ref: ${{ github.event.inputs.tag || github.ref }}
|
|
|
|
- name: Resolve tag & write VERSION
|
|
run: |
|
|
if [ -n "${{ github.event.inputs.tag }}" ]; then
|
|
TAG="${{ github.event.inputs.tag }}"
|
|
# Verify tag exists
|
|
if ! git rev-parse "refs/tags/$TAG" >/dev/null 2>&1; then
|
|
echo "Error: Tag '$TAG' does not exist in the repository"
|
|
exit 1
|
|
fi
|
|
else
|
|
TAG=${GITHUB_REF#refs/tags/}
|
|
fi
|
|
echo "TAG=$TAG" >> $GITHUB_ENV
|
|
echo "$TAG" > VERSION
|
|
echo "Building tag: $TAG for ${{ matrix.arch }}"
|
|
|
|
|
|
# - name: Normalize GHCR repository
|
|
# run: echo "GHCR_REPOSITORY=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
|
|
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
# - name: Log in to GHCR
|
|
# uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
|
|
# with:
|
|
# registry: ghcr.io
|
|
# username: ${{ github.actor }}
|
|
# password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract metadata (labels)
|
|
id: meta
|
|
uses: docker/metadata-action@c299e40c65443455700f0fdfc63efafe5b349051 # v5
|
|
with:
|
|
images: |
|
|
calciumion/new-api
|
|
# ghcr.io/${{ env.GHCR_REPOSITORY }}
|
|
|
|
- name: Build & push single-arch (to both registries)
|
|
id: build
|
|
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
|
|
with:
|
|
context: .
|
|
platforms: ${{ matrix.platform }}
|
|
push: true
|
|
tags: |
|
|
calciumion/new-api:${{ env.TAG }}-${{ matrix.arch }}
|
|
calciumion/new-api:latest-${{ matrix.arch }}
|
|
# ghcr.io/${{ env.GHCR_REPOSITORY }}:${{ env.TAG }}-${{ matrix.arch }}
|
|
# ghcr.io/${{ env.GHCR_REPOSITORY }}:latest-${{ matrix.arch }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
provenance: mode=max
|
|
sbom: true
|
|
|
|
- name: Install cosign
|
|
uses: sigstore/cosign-installer@398d4b0eeef1380460a10c8013a76f728fb906ac # v3
|
|
|
|
- name: Sign image with cosign
|
|
run: cosign sign --yes calciumion/new-api@${{ steps.build.outputs.digest }}
|
|
|
|
- name: Output digest
|
|
run: |
|
|
echo "### Docker Image Digest (${{ matrix.arch }})" >> $GITHUB_STEP_SUMMARY
|
|
echo '```' >> $GITHUB_STEP_SUMMARY
|
|
echo "calciumion/new-api:${{ env.TAG }}-${{ matrix.arch }}" >> $GITHUB_STEP_SUMMARY
|
|
echo "${{ steps.build.outputs.digest }}" >> $GITHUB_STEP_SUMMARY
|
|
echo '```' >> $GITHUB_STEP_SUMMARY
|
|
|
|
create_manifests:
|
|
name: Create multi-arch manifests (Docker Hub)
|
|
needs: [build_single_arch]
|
|
runs-on: ubuntu-latest
|
|
if: startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch'
|
|
steps:
|
|
- name: Extract tag
|
|
run: |
|
|
if [ -n "${{ github.event.inputs.tag }}" ]; then
|
|
echo "TAG=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
|
|
else
|
|
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
|
fi
|
|
#
|
|
# - name: Normalize GHCR repository
|
|
# run: echo "GHCR_REPOSITORY=${GITHUB_REPOSITORY,,}" >> $GITHUB_ENV
|
|
|
|
- name: Log in to Docker Hub
|
|
uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Create & push manifest (Docker Hub - version)
|
|
run: |
|
|
docker buildx imagetools create \
|
|
-t calciumion/new-api:${TAG} \
|
|
calciumion/new-api:${TAG}-amd64 \
|
|
calciumion/new-api:${TAG}-arm64
|
|
|
|
- name: Create & push manifest (Docker Hub - latest)
|
|
run: |
|
|
docker buildx imagetools create \
|
|
-t calciumion/new-api:latest \
|
|
calciumion/new-api:latest-amd64 \
|
|
calciumion/new-api:latest-arm64
|
|
|
|
- name: Output manifest digest
|
|
run: |
|
|
echo "### Multi-arch Manifest" >> $GITHUB_STEP_SUMMARY
|
|
echo '```' >> $GITHUB_STEP_SUMMARY
|
|
docker buildx imagetools inspect calciumion/new-api:${TAG} >> $GITHUB_STEP_SUMMARY
|
|
echo '```' >> $GITHUB_STEP_SUMMARY
|
|
|
|
# ---- GHCR ----
|
|
# - name: Log in to GHCR
|
|
# uses: docker/login-action@c94ce9fb468520275223c153574b00df6fe4bcc9 # v3
|
|
# with:
|
|
# registry: ghcr.io
|
|
# username: ${{ github.actor }}
|
|
# password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# - name: Create & push manifest (GHCR - version)
|
|
# run: |
|
|
# docker buildx imagetools create \
|
|
# -t ghcr.io/${GHCR_REPOSITORY}:${TAG} \
|
|
# ghcr.io/${GHCR_REPOSITORY}:${TAG}-amd64 \
|
|
# ghcr.io/${GHCR_REPOSITORY}:${TAG}-arm64
|
|
#
|
|
# - name: Create & push manifest (GHCR - latest)
|
|
# run: |
|
|
# docker buildx imagetools create \
|
|
# -t ghcr.io/${GHCR_REPOSITORY}:latest \
|
|
# ghcr.io/${GHCR_REPOSITORY}:latest-amd64 \
|
|
# ghcr.io/${GHCR_REPOSITORY}:latest-arm64
|