File tree Expand file tree Collapse file tree 6 files changed +42
-6
lines changed
Expand file tree Collapse file tree 6 files changed +42
-6
lines changed Original file line number Diff line number Diff line change 7171 with :
7272 repository : ${{ github.repository }}.wiki
7373 path : ${{ github.event.repository.name }}.wiki
74- - name : Publish docs in wiki
74+ - name : Publish docs to wiki
7575 continue-on-error : true
7676 shell : bash
7777 env :
8080 run : |
8181 cd ${{ github.event.repository.name }}.wiki
8282 rm -rf docbkx
83- mv ../openidm-doc/target/docbkx ../${{ github.event.repository.name }}.wiki
83+ cp -R ../openidm-doc/target/docbkx ../${{ github.event.repository.name }}.wiki
8484 git add -A
8585 git commit -a -m "upload docs after deploy ${{ github.sha }}"
8686 git push --quiet --force
87+
88+ - uses : actions/checkout@v4
89+ continue-on-error : true
90+ with :
91+ repository : OpenIdentityPlatform/doc.openidentityplatform.org
92+ path : doc.openidentityplatform.org
93+ token : ${{ secrets.OIP_PAT_GH_TOKEN }}
94+
95+ - name : Publish docs to site
96+ continue-on-error : true
97+ shell : bash
98+ run : |
99+ export REPO_NAME_LC=$(echo '${{github.event.repository.name}}' | tr '[:upper:]' '[:lower:]')
100+ export SITE_DOC_FOLDER=${REPO_NAME_LC}-doc
101+ cd doc.openidentityplatform.org
102+ rm -rf ${REPO_NAME_LC}
103+ cp -R ../${SITE_DOC_FOLDER}/target/docbkx/bootstrap ../doc.openidentityplatform.org/${REPO_NAME_LC}
104+ git add -A
105+ git commit -a -m "upload ${{github.event.repository.name}} docs after deploy ${{ github.sha }}"
106+ git push --force
Original file line number Diff line number Diff line change 9191 git tag -f ${{ github.event.inputs.releaseVersion }}
9292 git push --quiet --force
9393 git push --quiet --force origin ${{ github.event.inputs.releaseVersion }}
94+
95+ - uses : actions/checkout@v4
96+ continue-on-error : true
97+ with :
98+ repository : OpenIdentityPlatform/doc.openidentityplatform.org
99+ path : doc.openidentityplatform.org
100+ token : ${{ secrets.OIP_PAT_GH_TOKEN }}
101+ - name : Publish docs to site
102+ continue-on-error : true
103+ shell : bash
104+ run : |
105+ export REPO_NAME_LC=$(echo '${{github.event.repository.name}}' | tr '[:upper:]' '[:lower:]')
106+ export TAG_NAME='${{github.event.repository.name}}-${{ github.event.inputs.releaseVersion }}'
107+ cd doc.openidentityplatform.org
108+ git tag -f '${TAG_NAME}'
109+ git push --quiet --force origin '${TAG_NAME}'
110+
94111 release-docker :
95112 name : Docker release
96113 runs-on : ' ubuntu-latest'
Original file line number Diff line number Diff line change 4141 <plugin >
4242 <groupId >org.openidentityplatform.commons</groupId >
4343 <artifactId >doc-maven-plugin</artifactId >
44- <version >${commons-plugin.version} </version >
4544 <executions >
4645 <execution >
4746 <id >build-man-pages</id >
6766 <format >pdf</format >
6867 <format >webhelp</format >
6968 <format >xhtml5</format >
69+ <format >bootstrap</format >
7070 </formats >
7171 </configuration >
7272 </plugin >
Original file line number Diff line number Diff line change 2121 "grunt-cli" : " 1.2.0" ,
2222 "grunt-contrib-copy" : " 1.0.0" ,
2323 "grunt-contrib-less" : " 1.3.0" ,
24- "grunt-contrib-qunit" : " 8.0 .1" ,
24+ "grunt-contrib-qunit" : " 10.1 .1" ,
2525 "grunt-contrib-requirejs" : " 1.0.0" ,
2626 "grunt-contrib-watch" : " 1.0.0" ,
2727 "grunt-eslint" : " 17.3.2" ,
Original file line number Diff line number Diff line change 2121 "grunt-cli" : " 1.2.0" ,
2222 "grunt-contrib-copy" : " 1.0.0" ,
2323 "grunt-contrib-less" : " 1.3.0" ,
24- "grunt-contrib-qunit" : " 8.0 .1" ,
24+ "grunt-contrib-qunit" : " 10.1 .1" ,
2525 "grunt-contrib-requirejs" : " 1.0.0" ,
2626 "grunt-contrib-watch" : " 1.0.0" ,
2727 "grunt-eslint" : " 17.3.2" ,
Original file line number Diff line number Diff line change 183183 <apache .commons-io.version>2.7</apache .commons-io.version>
184184 <apache .commons-fileupload.version>1.5</apache .commons-fileupload.version>
185185
186- <commons-plugin .version>2.1.4</commons-plugin .version>
187186 <ant .contrib.version>1.0b3</ant .contrib.version>
188187
189188 <java .surefire.options />
You can’t perform that action at this time.
0 commit comments