Update .forgejo/workflows/release.yml
All checks were successful
Release / release (push) Successful in 16m53s

This commit is contained in:
root 2025-06-23 11:58:06 +01:00
parent 410061e9bf
commit 789782ed4a

View file

@ -90,10 +90,10 @@ jobs:
restore-keys: | restore-keys: |
maven-${{ runner.os }}- maven-${{ runner.os }}-
# Build the backend (JAR) # 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) - name: Build backend (Spring Boot)
run: | run: |
mvn clean package -Pprod -DskipTests mvn clean package -Pprod -DskipTests -Dmaven.download.parallel=false
# Log output # Log output
- name: List output files - name: List output files