Files
timetracker/.gitea/workflows/docker-build.yml
Felix Schlusche c9ff811a2a
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
feat: add caching for Gitea Actions to improve build performance
2025-10-24 15:57:55 +02:00

67 lines
2.0 KiB
YAML

name: Build and Push Docker Image
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
env:
REGISTRY: ${{ secrets.REGISTRY || 'gitea.fx-se.de' }}
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Cache Gitea Actions
uses: actions/cache@v3
with:
# The path to the directory that should be cached
path: /root/.cache/act
# A key to identify the cache
key: ${{ runner.os }}-gitea-actions-${{ hashFiles(''.workflow) }}
# A fallback key to use if the primary key doesn't match
restore-keys: |
${{ runner.os }}-gitea-actions-
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to Gitea Container Registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.PACKAGE_TOKEN }}
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: |
type=sha,format=short
type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push Docker image
uses: docker/build-push-action@v5
with:
context: .
file: ./Dockerfile
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:buildcache,mode=max
- name: Image digest
run: echo "Image pushed with digest ${{ steps.meta.outputs.digest }}"