We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6c8c10 commit 1b014beCopy full SHA for 1b014be
1 file changed
.github/workflows/javadoc.yml
@@ -69,13 +69,14 @@ jobs:
69
echo $VERSION_DIR
70
rm -rf "gh-pages/${VERSION_DIR}"
71
mkdir -p "gh-pages/${VERSION_DIR}"
72
- TGT_DIR="target/reports/apidocs/"
73
- if [ -d "$TGT_DIR" ]; then
74
- echo "$TGT_DIR" exists."
+ SRC_DIR="target/reports/apidocs/"
+ echo $SRC_DIR
+ if [ -d $SRC_DIR ]; then
75
+ echo $SRC_DIR exists."
76
else
- echo "$TGT_DIR" does not exist."
77
+ echo $SRC_DIR does not exist."
78
fi
- cp -r target/reports/apidocs/* "gh-pages/${VERSION_DIR}/"
79
+ cp -r target/reports/apidocs/ "gh-pages/${VERSION_DIR}/"
80
81
- name: Regenerate multi-version index.html
82
run: |
0 commit comments