first commit
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 2m50s

This commit is contained in:
2025-11-21 18:59:56 -08:00
parent e89eea4df2
commit 8942f0e608

View File

@@ -1,61 +1,57 @@
name: Build and Push Docker Image name: Build and Push Docker Image
on: on:
workflow_dispatch: workflow_dispatch:
push: push:
branches: branches:
- main - main
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
steps: steps:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set registry URL - name: Set registry URL
id: registry id: registry
run: | run: |
# The registry URL for Gitea is the server URL without the scheme (https://) if [ "${{ github.server_url }}" = "https://github.com" ]; then
if [ "${{ github.server_url }}" = "https://github.com" ]; then echo "url=ghcr.io" >> $GITHUB_OUTPUT
echo "url=ghcr.io" >> $GITHUB_OUTPUT else
else echo "url=${{ github.server_url }}" | sed 's|https://||' >> $GITHUB_OUTPUT
# Remove 'https://' prefix for the Docker registry hostname fi
echo "url=$(echo ${{ 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 - name: Log in to Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ steps.registry.outputs.url }} registry: ${{ steps.registry.outputs.url }}
username: ${{ github.actor }} username: ${{ github.actor }}
# Use GITEA_TOKEN (or a generic token) for authentication password: ${{ secrets.PACKAGE_TOKEN || secrets.GITHUB_TOKEN }}
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: Build and push multi-arch Docker image - name: Build and push multi-arch Docker image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5
with: with:
context: . context: .
push: true push: true
platforms: linux/amd64,linux/arm64 platforms: linux/amd64,linux/arm64
tags: | tags: |
${{ steps.registry.outputs.url }}/${{ github.repository }}:latest ${{ steps.registry.outputs.url }}/${{ github.repository }}:latest
${{ steps.registry.outputs.url }}/${{ github.repository }}:${{ github.sha }} ${{ steps.registry.outputs.url }}/${{ github.repository }}:${{ github.sha }}
cache-from: type=gha cache-from: type=gha
cache-to: type=gha,mode=max cache-to: type=gha,mode=max
# --- AUTOMATIC REPOSITORY LINKING --- # --- AUTOMATIC REPOSITORY LINKING ---
# This label adds an OCI annotation that Gitea uses to automatically # This label adds an OCI annotation that Gitea uses to automatically
# link the package to the repository source code. # link the package to the repository source code.
labels: | labels: org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}