Files
jellyfin-docker-latest-rc/.gitea/workflows/docker-build.yml
T
menekis eaf419369a
Docker Build / build (push) Failing after 5s
add build workflow
2026-07-20 14:00:42 -04:00

20 lines
536 B
YAML

name: Docker Build
# Controls when the workflow will run
on:
push:
branches:
- main # Triggers on pushes to the main branch
workflow_dispatch: # Allows you to run this workflow manually from the Gitea UI
jobs:
build:
# Ensure your Gitea runner is configured with this label and has Docker available
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build Jellyfin Docker Image
run: docker build --no-cache -t jellyfin-rc:latest .