Package/Deploy #198
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # The contents of this file are subject to the terms of the Common Development and | |
| # Distribution License (the License). You may not use this file except in compliance with the | |
| # License. | |
| # | |
| # You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the | |
| # specific language governing permission and limitations under the License. | |
| # | |
| # When distributing Covered Software, include this CDDL Header Notice in each file and include | |
| # the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL | |
| # Header, with the fields enclosed by brackets [] replaced by your own identifying | |
| # information: "Portions copyright [year] [name of copyright owner]". | |
| # | |
| # Copyright 2024-2026 3A Systems, LLC. | |
| name: Package/Deploy | |
| on: | |
| workflow_dispatch: | |
| workflow_run: | |
| branches: [ 'sustaining/6.3.x','master' ] | |
| workflows: ["Build","Release"] | |
| types: [completed] | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.workflow_run.head_branch }} | |
| cancel-in-progress: false | |
| jobs: | |
| deploy-maven: | |
| if: ${{ github.event.workflow_run.conclusion == 'success' && github.event.workflow_run.event=='push' }} | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: Print github context | |
| env: | |
| GITHUB_CONTEXT: ${{ toJSON(github) }} | |
| run: echo "$GITHUB_CONTEXT" | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| ref: ${{ github.event.workflow_run.head_branch }} | |
| - name: Set up Java for publishing to Maven Central Repository OSS | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: ${{ github.event.workflow_run.head_branch == 'sustaining/6.3.x' && '8' || '17'}} | |
| distribution: 'temurin' | |
| server-id: ossrh | |
| server-username: MAVEN_USERNAME | |
| server-password: MAVEN_PASSWORD | |
| - name: Cache Maven packages | |
| uses: actions/cache@v5 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-m2-repository-${{ hashFiles('**/pom.xml') }} | |
| restore-keys: ${{ runner.os }}-m2-repository | |
| - name: Install gpg secret key | |
| env: | |
| GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} | |
| if: ${{ env.GPG_PRIVATE_KEY!=''}} | |
| run: | | |
| cat <(echo -e "${{ secrets.GPG_PRIVATE_KEY }}") | gpg --batch --import | |
| gpg --list-secret-keys --keyid-format LONG | |
| - name: Build package local | |
| env: | |
| MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
| MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
| MAVEN_OPTS: -Dhttps.protocols=TLSv1.2 -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.requestSentEnabled=true -Dmaven.wagon.http.retryHandler.count=10 | |
| if: ${{ !(github.event.workflow_run.event=='push' && env.MAVEN_USERNAME!='' && env.MAVEN_PASSWORD!='')}} | |
| run: mvn --batch-mode --errors --update-snapshots -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} package --file pom.xml | |
| - name: Publish to the Maven Central Repository | |
| env: | |
| MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | |
| MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | |
| MAVEN_OPTS: -Dhttps.protocols=TLSv1.2 -Dmaven.wagon.httpconnectionManager.ttlSeconds=120 -Dmaven.wagon.http.retryHandler.requestSentEnabled=true -Dmaven.wagon.http.retryHandler.count=10 | |
| if: ${{ github.event.workflow_run.event=='push' && env.MAVEN_USERNAME!='' && env.MAVEN_PASSWORD!=''}} | |
| run: mvn --batch-mode --errors --update-snapshots -Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }} deploy --file pom.xml | |
| - name: Build Javadoc | |
| continue-on-error: true | |
| run: | | |
| mvn javadoc:aggregate -pl '-:openidm-ui,-:openidm-ui-admin' \ | |
| -pl '-:openidm-ui-api,-:openidm-ui-common,-:openidm-ui-enduser' \ | |
| -pl '-:openidm-zip' | |
| - name: Upload artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: OpenIDM | |
| path: openidm-zip/target/*.zip | |
| - name: Configure Git User | |
| run: | | |
| git config --global user.name "Open Identity Platform Community" | |
| git config --global user.email "open-identity-platform-opendj@googlegroups.com" | |
| cd .. | |
| - uses: actions/checkout@v6 | |
| continue-on-error: true | |
| with: | |
| repository: ${{ github.repository }}.wiki | |
| path: ${{ github.event.repository.name }}.wiki | |
| - name: Publish docs to wiki | |
| continue-on-error: true | |
| shell: bash | |
| env: | |
| GITHUB_ACTOR: ${{ github.actor }} | |
| GITHUB_TOKEN: ${{ github.token }} | |
| run: | | |
| cd ${{ github.event.repository.name }}.wiki | |
| rm -rf asciidoc | |
| mkdir asciidoc | |
| cp -R ../openidm-doc/target/asciidoc/pdf ../${{ github.event.repository.name }}.wiki/asciidoc | |
| git add -A | |
| git commit -a -m "upload docs after deploy ${{ github.sha }}" | |
| git push --quiet --force | |
| - uses: actions/checkout@v6 | |
| continue-on-error: true | |
| with: | |
| repository: OpenIdentityPlatform/doc.openidentityplatform.org | |
| path: doc.openidentityplatform.org | |
| token: ${{ secrets.OIP_PAT_GH_TOKEN }} | |
| - name: Publish docs to site | |
| continue-on-error: true | |
| shell: bash | |
| run: | | |
| export REPO_NAME_LC=$(echo '${{github.event.repository.name}}' | tr '[:upper:]' '[:lower:]') | |
| export SITE_DOC_FOLDER=${REPO_NAME_LC}-doc | |
| cd doc.openidentityplatform.org | |
| rm -rf ${REPO_NAME_LC}/modules | |
| cp -R ../${SITE_DOC_FOLDER}/target/asciidoc/antora/modules ../doc.openidentityplatform.org/${REPO_NAME_LC} | |
| rm -rf ${REPO_NAME_LC}/apidocs | |
| cp -R ../target/reports/apidocs ../doc.openidentityplatform.org/${REPO_NAME_LC} | |
| git add -A | |
| if ! git diff-index --quiet HEAD; then | |
| echo "committing changes to the docs repository" | |
| git commit -a -m "upload ${{github.event.repository.name}} docs after deploy ${{ github.sha }}" | |
| git push --force | |
| fi |