Project init
Some checks failed
Maven build / build (push) Failing after 1m25s

This commit is contained in:
Guillaume Dugas
2025-08-26 17:33:03 +02:00
commit e548e21f4f
64 changed files with 2611 additions and 0 deletions

25
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,25 @@
name: Maven build
run-name: Build application with maven
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
env:
MAVEN_ACCESS_TOKEN: ${{ secrets.CI_TOKEN }}
MAVEN_REPO_OWNER: ${{ gitea.owner }}
steps:
- name: Check out latest repository code
uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
java-version: '21'
distribution: 'temurin'
- name: Build project
run: ./mvnw -s .mvn/settings.xml clean install -X -DskipTests
- name: Deploy project
run: ./mvnw -s .mvn/settings.xml deploy -X