We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20f94b1 commit 1ede145Copy full SHA for 1ede145
.github/workflows/release.yml
@@ -202,8 +202,9 @@ jobs:
202
modules=($(grep -ozP '(?<=module>)[^<]+' 'pom.xml' | tr -d '\0'))
203
for m in "${modules[@]}"
204
do
205
- echo "$m/target/site -> ./target/site/$m"
206
- cp -r $m/target/site ./target/site/$m
+ echo "$m/target/site -> ./target/$m"
+ mkdir -p ./target/$m
207
+ cp -r $m/target/site ./target/$m
208
done
209
210
- name: Deploy to Github pages
0 commit comments