From 85304c0d2815e2ec56717ec710f9b632025ca54b Mon Sep 17 00:00:00 2001 From: enricovianello Date: Thu, 3 Sep 2026 18:34:11 +0200 Subject: [PATCH] Fix env variables names in maven workflow --- .github/workflows/maven.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/maven.yaml b/.github/workflows/maven.yaml index 96322af..fdd7890 100644 --- a/.github/workflows/maven.yaml +++ b/.github/workflows/maven.yaml @@ -15,13 +15,13 @@ jobs: - name: Set up JDK 17 uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 with: - distribution: 'temurin' + distribution: temurin java-version: 17 server-id: central - server-username: MAVEN_CENTRAL_USERNAME - server-password: MAVEN_CENTRAL_PASSWORD + server-username-env-var: MAVEN_CENTRAL_USERNAME + server-password-env-var: MAVEN_CENTRAL_PASSWORD gpg-private-key: ${{ secrets.MAVEN_GPG_KEY }} - gpg-passphrase: MAVEN_GPG_PASSPHRASE + gpg-passphrase-env-var: MAVEN_GPG_PASSPHRASE - name: Install libfaketime on Ubuntu run: |