Skip to content

Commit 1ede145

Browse files
committed
Update release.yml
1 parent 20f94b1 commit 1ede145

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,9 @@ jobs:
202202
modules=($(grep -ozP '(?<=module>)[^<]+' 'pom.xml' | tr -d '\0'))
203203
for m in "${modules[@]}"
204204
do
205-
echo "$m/target/site -> ./target/site/$m"
206-
cp -r $m/target/site ./target/site/$m
205+
echo "$m/target/site -> ./target/$m"
206+
mkdir -p ./target/$m
207+
cp -r $m/target/site ./target/$m
207208
done
208209
209210
- name: Deploy to Github pages

0 commit comments

Comments
 (0)