Skip to content

Commit 264acaf

Browse files
authored
Add missing attachments & publish pdf to wiki (#74)
1 parent 1226eb3 commit 264acaf

22 files changed

+2080
-95
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,9 @@ jobs:
7979
GITHUB_TOKEN: ${{ github.token }}
8080
run: |
8181
cd ${{ github.event.repository.name }}.wiki
82-
rm -rf docbkx
83-
cp -R ../openidm-doc/target/docbkx ../${{ github.event.repository.name }}.wiki
82+
rm -rf asciidoc
83+
mkdir asciidoc
84+
cp -R ../openidm-doc/target/asciidoc/pdf ../${{ github.event.repository.name }}.wiki/asciidoc
8485
git add -A
8586
git commit -a -m "upload docs after deploy ${{ github.sha }}"
8687
git push --quiet --force

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,9 @@ jobs:
8484
GITHUB_TOKEN: ${{ github.token }}
8585
run: |
8686
cd ${{ github.event.repository.name }}.wiki
87-
rm -rf docbkx
88-
mv ../openidm-doc/target/docbkx ../${{ github.event.repository.name }}.wiki
87+
rm -rf asciidoc
88+
mkdir asciidoc
89+
cp -R ../openidm-doc/target/asciidoc/pdf ../${{ github.event.repository.name }}.wiki/asciidoc
8990
git add -A
9091
git commit -a -m "upload docs after release ${{ github.event.inputs.releaseVersion }}"
9192
git tag -f ${{ github.event.inputs.releaseVersion }}

0 commit comments

Comments
 (0)