Files
ersatztv-ffmpeg/.gitea/workflows/build.yml
Timothy 7df538e14e
Some checks failed
Build FFmpeg Image / Build amd64 image (push) Has been cancelled
Strip to amd64-only and adapt for Gitea Actions
Remove arm32v7 and arm64 Dockerfiles (only need amd64 for jazz).
Replace GitHub Actions multi-platform workflow with Gitea Actions
workflow targeting Gitea container registry. Add CLAUDE.md project
docs and update README for fork context.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-27 00:13:34 +01:00

42 lines
1.0 KiB
YAML

name: Build FFmpeg Image
on:
workflow_dispatch:
push:
branches:
- main
env:
REGISTRY: 192.168.1.95:3000
IMAGE_NAME: timothy/ersatztv-ffmpeg
RELEASE_VERSION: 7.1.1
jobs:
build:
name: Build amd64 image
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Gitea registry
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
file: ./images/linux/amd64/Dockerfile
push: ${{ github.ref == 'refs/heads/main' }}
platforms: linux/amd64
tags: |
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.RELEASE_VERSION }}
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest