diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 064afd55..3662c0a4 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -22,6 +22,7 @@ jobs: - uses: s4u/maven-settings-action@v3.0.0 with: sonatypeSnapshots: true + githubServer: false - uses: actions/checkout@v3 - name: Set up JDK 8 uses: actions/setup-java@v3 @@ -29,8 +30,40 @@ jobs: java-version: '8' distribution: 'temurin' cache: maven - - name: Build with Maven - run: mvn -B deploy --file pom.xml + - uses: actions/checkout@v4 + - name: Set up Maven Central Repository + uses: actions/setup-java@v3 + with: + java-version: '8' + distribution: 'temurin' + server-id: ossrh + server-username: MAVEN_USERNAME + server-password: MAVEN_PASSWORD + #- name: Publish package + # run: mvn --batch-mode deploy + # env: + # MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} + # MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} + #- name: Build with Maven + # run: mvn -B verify --file pom.xml + - id: install-secret-key + name: Install gpg secret key + run: | + # Install gpg secret key + cat <(echo -e "${{ secrets.OSSRH_GPG_SECRET_KEY1 }}") | gpg --batch --import + # Verify gpg secret key + gpg --list-secret-keys --keyid-format LONG + - id: publish-to-central + name: Publish to Central Repository + env: + MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} + run: | + mvn \ + --no-transfer-progress \ + --batch-mode \ + -Dgpg.passphrase=${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} \ + clean verify deploy # Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive #- name: Update dependency graph