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