20 lines
550 B
YAML
20 lines
550 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 paper-elk.com/jellyfin-rc:latest . |