Skip to content

Commit 3ea09f9

Browse files
committed
fix: TRACEFOSS-1029 Updated paths in gh-pages action.
1 parent 9d74e83 commit 3ea09f9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish-documentation.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
env:
5050
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
5151
run: |
52-
mvn -f docs/pom.xml --batch-mode generate-resources
52+
mvn -f backend/docs/pom.xml --batch-mode generate-resources
5353
5454
- name: Install pandoc
5555
run: |
@@ -60,7 +60,7 @@ jobs:
6060
env:
6161
FILES: "administration/administration-guide arc42/full api-specification/api-specification"
6262
run: |
63-
cd docs/target/generated-docs
63+
cd backend/docs/target/generated-docs
6464
for file in ${FILES}; do \
6565
pandoc -f html -t markdown_strict --wrap=preserve "${file}.html" -o "${file}.md"; \
6666
sed -i 's/](#_/](#/' "${file}.md"; \
@@ -70,5 +70,5 @@ jobs:
7070
uses: peaceiris/[email protected]
7171
with:
7272
github_token: ${{ secrets.GITHUB_TOKEN }}
73-
publish_dir: "./docs/target/generated-docs"
73+
publish_dir: ".backend/docs/target/generated-docs"
7474
destination_dir: "docs"

0 commit comments

Comments
 (0)