Skip to content

Commit 1b014be

Browse files
committed
debug javadoc.yml
1 parent c6c8c10 commit 1b014be

1 file changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/javadoc.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,13 +69,14 @@ jobs:
6969
echo $VERSION_DIR
7070
rm -rf "gh-pages/${VERSION_DIR}"
7171
mkdir -p "gh-pages/${VERSION_DIR}"
72-
TGT_DIR="target/reports/apidocs/"
73-
if [ -d "$TGT_DIR" ]; then
74-
echo "$TGT_DIR" exists."
72+
SRC_DIR="target/reports/apidocs/"
73+
echo $SRC_DIR
74+
if [ -d $SRC_DIR ]; then
75+
echo $SRC_DIR exists."
7576
else
76-
echo "$TGT_DIR" does not exist."
77+
echo $SRC_DIR does not exist."
7778
fi
78-
cp -r target/reports/apidocs/* "gh-pages/${VERSION_DIR}/"
79+
cp -r target/reports/apidocs/ "gh-pages/${VERSION_DIR}/"
7980
8081
- name: Regenerate multi-version index.html
8182
run: |

0 commit comments

Comments
 (0)