feat: update Docker build workflow to include additional paths for triggering builds
All checks were successful
Build and Push Docker Image / build (push) Successful in 35s

This commit is contained in:
Felix Schlusche
2025-10-24 16:56:30 +02:00
parent f84867fe1b
commit a02f97cc7f
2 changed files with 86 additions and 12 deletions

View File

@@ -5,10 +5,34 @@ on:
branches:
- main
- master
paths:
- 'server.js'
- 'package.json'
- 'package-lock.json'
- 'Dockerfile'
- 'docker-compose.yml'
- 'db/**'
- 'public/**'
- '!public/**/*.md'
- '!**/*.md'
- '!.gitea/workflows/**'
- '!.gitignore'
pull_request:
branches:
- main
- master
paths:
- 'server.js'
- 'package.json'
- 'package-lock.json'
- 'Dockerfile'
- 'docker-compose.yml'
- 'db/**'
- 'public/**'
- '!public/**/*.md'
- '!**/*.md'
- '!.gitea/workflows/**'
- '!.gitignore'
env:
REGISTRY: ${{ secrets.REGISTRY || 'gitea.fx-se.de' }}