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 a54bd5de41
64 changed files with 2613 additions and 0 deletions

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

@@ -0,0 +1,27 @@
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 -DskipTests
- name: Deploy project
run: |
echo $MAVEN_REPO_OWNER
./mvnw -s .mvn/settings.xml deploy