Release #45
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 2022-2026 3A Systems, LLC. | |
| name: Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| releaseVersion: | |
| description: "Default version to use when preparing a release." | |
| required: true | |
| default: "X.Y.Z" | |
| developmentVersion: | |
| description: "Default version to use for new local working copy." | |
| required: true | |
| default: "X.Y.Z-SNAPSHOT" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| release-maven: | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: Print github context | |
| env: | |
| GITHUB_CONTEXT: ${{ toJSON(github) }} | |
| run: echo "$GITHUB_CONTEXT" | |
| - name: Install wine+rpm for distribution | |
| shell: bash | |
| run: | | |
| sudo rm -f /etc/apt/sources.list.d/microsoft-prod.list | |
| sudo dpkg --add-architecture i386 | |
| sudo mkdir -pm755 /etc/apt/keyrings && sudo wget -O /etc/apt/keyrings/winehq-archive.key https://dl.winehq.org/wine-builds/winehq.key | |
| sudo wget -NP /etc/apt/sources.list.d/ https://dl.winehq.org/wine-builds/ubuntu/dists/$(lsb_release -c -s)/winehq-$(lsb_release -c -s).sources | |
| sudo apt-get update | |
| sudo apt install --install-recommends winehq-stable || sudo apt install --install-recommends winehq-staging | |
| wine --version | |
| version="9.4.0"; sudo wget "https://dl.winehq.org/wine/wine-mono/$version/wine-mono-$version-x86.msi" -O /tmp/wine-mono.msi | |
| wine msiexec /i /tmp/wine-mono.msi | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| submodules: recursive | |
| - 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/4.10.x' && '8' || '11'}} | |
| 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 | |
| git config --global user.signingkey B02611B009E5302EB58D102D6C2EDF3C90D33841 | |
| - 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" | |
| - name: Release and publish to the Maven Central Repository | |
| env: | |
| GITHUB_ACTOR: ${{ github.actor }} | |
| GITHUB_TOKEN: ${{ github.token }} | |
| 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: ${{ env.MAVEN_USERNAME!='' && env.MAVEN_PASSWORD!='' }} | |
| run: mvn --batch-mode -Darguments="-Dgpg.passphrase=${{ secrets.GPG_PASSPHRASE }}" -DsignTag=true -DtagNameFormat="${{ github.event.inputs.releaseVersion }}" -DreleaseVersion=${{ github.event.inputs.releaseVersion }} -DdevelopmentVersion=${{ github.event.inputs.developmentVersion }} release:prepare release:perform --file pom.xml | |
| - name: Release on GitHub | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| name: ${{ github.event.inputs.releaseVersion }} | |
| tag_name: ${{ github.event.inputs.releaseVersion }} | |
| draft: false | |
| prerelease: false | |
| fail_on_unmatched_files: false | |
| generate_release_notes: true | |
| files: | | |
| target/checkout/opendj-server-legacy/target/package/*.zip | |
| target/checkout/opendj-ldap-toolkit/target/*.zip | |
| target/checkout/opendj-packages/opendj-deb/opendj-deb-standard/target/*.deb | |
| target/checkout/opendj-packages/opendj-rpm/opendj-rpm-standard/target/rpm/opendj/RPMS/noarch/*.rpm | |
| target/checkout/opendj-packages/opendj-msi/opendj-msi-standard/target/*.msi | |
| target/checkout/opendj-packages/opendj-docker/target/Dockerfile.zip | |
| target/checkout/opendj-packages/opendj-openshift-template/*.yaml | |
| target/checkout/opendj-doc-generated-ref/target/*.zip | |
| target/checkout/opendj-dsml-servlet/target/*.war | |
| target/checkout/opendj-rest2ldap-servlet/target/*.war | |
| - uses: actions/checkout@v6 | |
| continue-on-error: true | |
| with: | |
| repository: ${{ github.repository }}.wiki | |
| path: ${{ github.event.repository.name }}.wiki | |
| fetch-depth: 0 | |
| - 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 ../target/checkout/opendj-doc-generated-ref/target/asciidoc/pdf ../${{ github.event.repository.name }}.wiki/asciidoc | |
| git add -A | |
| git commit -a -m "upload docs after release ${{ github.event.inputs.releaseVersion }}" | |
| git tag -f ${{ github.event.inputs.releaseVersion }} | |
| git push --quiet --force | |
| git push --quiet --force origin ${{ github.event.inputs.releaseVersion }} | |
| - 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-generated-ref | |
| export TAG_NAME='${{github.event.repository.name}}-${{ github.event.inputs.releaseVersion }}' | |
| cd doc.openidentityplatform.org | |
| git tag -f ${TAG_NAME} | |
| git push --quiet --force origin ${TAG_NAME} | |
| release-docker: | |
| name: Docker release | |
| runs-on: 'ubuntu-latest' | |
| needs: | |
| - release-maven | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.inputs.releaseVersion }} | |
| fetch-depth: 1 | |
| submodules: recursive | |
| - name: Docker meta | |
| id: meta | |
| uses: docker/metadata-action@v6 | |
| with: | |
| images: | | |
| ${{ github.repository }} | |
| ghcr.io/${{ github.repository }}/${{ github.event.repository.name }} | |
| tags: | | |
| type=raw,value=latest | |
| type=raw,value=${{ github.event.inputs.releaseVersion }} | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v4 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Login to GHCR | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and push image | |
| uses: docker/build-push-action@v7 | |
| continue-on-error: true | |
| with: | |
| context: ./opendj-packages/opendj-docker | |
| file: ./opendj-packages/opendj-docker/Dockerfile | |
| build-args: | | |
| VERSION=${{ github.event.inputs.releaseVersion }} | |
| platforms: linux/amd64, linux/arm64/8, linux/ppc64le, linux/s390x, linux/riscv64 #, linux/arm/v7 | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} | |
| release-docker-alpine: | |
| name: Docker release | |
| runs-on: 'ubuntu-latest' | |
| needs: | |
| - release-maven | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.inputs.releaseVersion }} | |
| fetch-depth: 1 | |
| submodules: recursive | |
| - name: Docker meta | |
| id: meta | |
| uses: docker/metadata-action@v6 | |
| with: | |
| images: | | |
| ${{ github.repository }} | |
| ghcr.io/${{ github.repository }}/${{ github.event.repository.name }} | |
| tags: | | |
| type=raw,value=alpine | |
| type=raw,value=${{ github.event.inputs.releaseVersion }}-alpine | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Login to DockerHub | |
| uses: docker/login-action@v4 | |
| with: | |
| username: ${{ secrets.DOCKER_USERNAME }} | |
| password: ${{ secrets.DOCKER_PASSWORD }} | |
| - name: Login to GHCR | |
| uses: docker/login-action@v4 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and push image | |
| continue-on-error: true | |
| uses: docker/build-push-action@v7 | |
| with: | |
| context: ./opendj-packages/opendj-docker | |
| file: ./opendj-packages/opendj-docker/Dockerfile-alpine | |
| build-args: | | |
| VERSION=${{ github.event.inputs.releaseVersion }} | |
| platforms: linux/amd64, linux/arm64/8, linux/s390x, linux/ppc64le, linux/386, linux/riscv64 | |
| push: true | |
| tags: ${{ steps.meta.outputs.tags }} | |
| labels: ${{ steps.meta.outputs.labels }} |