From 1c4bd78f56c724c90fad08d5e35f8a6795d0a17b Mon Sep 17 00:00:00 2001 From: Justin Harms Date: Fri, 2 Jan 2026 17:48:46 -0600 Subject: [PATCH] Add FFmpeg setup step to Gitea workflow for enhanced media processing - Included a new step in the test-pr.yaml workflow to set up FFmpeg, improving the project's media handling capabilities. - This addition complements the existing build steps for Go and frontend assets, ensuring a more comprehensive build environment. --- .gitea/workflows/test-pr.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitea/workflows/test-pr.yaml b/.gitea/workflows/test-pr.yaml index 2c56f54..6da108e 100644 --- a/.gitea/workflows/test-pr.yaml +++ b/.gitea/workflows/test-pr.yaml @@ -10,6 +10,7 @@ jobs: - uses: actions/setup-go@main with: go-version-file: 'go.mod' + - uses: FedericoCarboni/setup-ffmpeg@v3 - run: go mod tidy - run: cd web && npm install && npm run build - run: go build ./...