fixing build pipeline

This commit is contained in:
2026-01-15 14:13:57 -08:00
parent ce6b107560
commit 48bd301db6

View File

@@ -1,58 +1,64 @@
name: Build and Push Multi-Arch Docker Image name: Build and Push Docker Image
on: on:
workflow_dispatch:
push: push:
branches: branches:
- main - main
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs: jobs:
build-and-push: build-and-push:
runs-on: ubuntu-latest runs-on: ubuntu-latest
permissions: permissions:
contents: read contents: read
packages: write packages: write
outputs:
container_sha: ${{ github.sha }}
registry_url: ${{ steps.registry.outputs.url }}
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set registry URL
id: registry
run: |
if [ "${{ github.server_url }}" = "https://github.com" ]; then
echo "url=ghcr.io" >> $GITHUB_OUTPUT
else
echo "url=${{ github.server_url }}" | sed 's|https://||' >> $GITHUB_OUTPUT
fi
- name: Set up QEMU - name: Set up QEMU
uses: docker/setup-qemu-action@v3 uses: docker/setup-qemu-action@v3
- name: Log in to Container Registry
uses: docker/login-action@v3
with: with:
platforms: arm64,amd64 registry: ${{ steps.registry.outputs.url }}
username: ${{ github.actor }}
password: ${{ secrets.PACKAGE_TOKEN || secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry - name: Build and push multi-arch Docker image
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract metadata for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=sha,prefix={{branch}}-
- name: Build and push Docker image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
context: . context: .
platforms: linux/amd64,linux/arm64
push: true push: true
tags: ${{ steps.meta.outputs.tags }} platforms: linux/amd64,linux/arm64
labels: ${{ steps.meta.outputs.labels }} tags: |
# Enable GitHub Actions cache (recommended over actions/cache) ${{ steps.registry.outputs.url }}/${{ github.repository }}:latest
cache-from: type=gha ${{ steps.registry.outputs.url }}/${{ github.repository }}:${{ github.sha }}
cache-to: type=gha,mode=max build-args: |
COMMIT_SHA=${{ github.sha }}
cache-from: type=registry,ref=${{ steps.registry.outputs.url }}/${{ github.repository }}:buildcache
cache-to: type=registry,ref=${{ steps.registry.outputs.url }}/${{ github.repository }}:buildcache,mode=max
#cache-from: type=gha
#cache-to: type=gha,mode=max
# --- AUTOMATIC REPOSITORY LINKING ---
# This label adds an OCI annotation that Gitea uses to automatically
# link the package to the repository source code.
labels: org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}