From 93b49966049cce2876cbc24561fd0b41a12850a4 Mon Sep 17 00:00:00 2001 From: Alexa Bird Date: Wed, 18 Feb 2026 15:29:04 -0700 Subject: [PATCH] Configure maven settings for full build --- .github/workflows/ci.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index febae5b1b53..9183ee663b8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -98,6 +98,21 @@ jobs: distribution: 'temurin' cache: maven + - name: Configure Maven settings + uses: s4u/maven-settings-action@v3.0.0 + with: + servers: | + [{ + "id": "codice", + "username": "${{ github.actor }}", + "password": "${{ secrets.READ_PACKAGES }}" + }, + { + "id": "connexta", + "username": "${{ github.actor }}", + "password": "${{ secrets.READ_PACKAGES }}" + }] + - name: Full build (excluding itests) run: mvn clean install $MAVEN_CLI_OPTS -P !itests