From eaf419369a4cba108b8195ce09a9183bf157b441 Mon Sep 17 00:00:00 2001 From: menekis Date: Mon, 20 Jul 2026 14:00:42 -0400 Subject: [PATCH] add build workflow --- .gitea/workflows/docker-build.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/docker-build.yml diff --git a/.gitea/workflows/docker-build.yml b/.gitea/workflows/docker-build.yml new file mode 100644 index 0000000..c86ba1a --- /dev/null +++ b/.gitea/workflows/docker-build.yml @@ -0,0 +1,20 @@ +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 . \ No newline at end of file