test deploy #120
This file contains 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
name: Package/Deploy | |
on: | |
push: | |
jobs: | |
deploy-maven: | |
runs-on: 'ubuntu-latest' | |
steps: | |
- name: Print github context | |
env: | |
GITHUB_CONTEXT: ${{ toJSON(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Set up Java for publishing to Maven Central Repository OSS | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '8' | |
distribution: 'temurin' | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
- name: Cache Maven packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-m2-repository-${{ hashFiles('**/pom.xml') }} | |
restore-keys: ${{ runner.os }}-m2-repository | |
- name: Build package local | |
env: | |
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 package --file pom.xml | |
- name: Configure Git User | |
run: | | |
git config --global user.name "Open Identity Platform Community" | |
git config --global user.email "[email protected]" | |
cd .. | |
- uses: actions/checkout@v4 | |
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 docbkx | |
cp -R ../openig-doc/target/docbkx ../${{ github.event.repository.name }}.wiki | |
git add -A | |
git commit -a -m "upload docs after deploy ${{ github.sha }}" | |
git push --quiet --force | |
- uses: actions/checkout@v4 | |
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=openig-doc | |
cd doc.openidentityplatform.org | |
rm -rf ${REPO_NAME_LC} | |
cp -R ../${SITE_DOC_FOLDER}/target/docbkx/bootstrap ../doc.openidentityplatform.org/${REPO_NAME_LC} | |
git add -A | |
git commit -a -m "upload ${{github.event.repository.name}} docs after deploy ${{ github.sha }}" | |
git push --force https://github.com/OpenIdentityPlatform/doc.openidentityplatform.org.git |