Update .forgejo/workflows/release.yml
Some checks failed
Release / release (push) Has been cancelled

This commit is contained in:
root 2025-06-25 10:03:44 +01:00
parent 38b91df37c
commit 563be82cb3

View file

@ -72,6 +72,17 @@ jobs:
cd src/main/webapp
npm run build
# DEBUG .m2 repo
- name: Debug .m2 cache state
run: |
echo "Container hostname: $(hostname)"
echo "Runner working dir: $PWD"
echo "Runner user: $(whoami)"
echo "Listing contents of ~/.m2/repository:"
ls -lhR ~/.m2/repository | head -n 100 || echo "No .m2/repository found"
echo "Disk usage:"
du -sh ~/.m2/repository || echo "No .m2 directory found"
# Build the backend (JAR). NOTE: the -Dmaven.download.parallel=false will force MAVEN to have a single connection for downloads, without this I can get "Connection reset"
- name: Build backend (Spring Boot)
run: |