Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
jbigot committed Dec 5, 2024
1 parent 71690ba commit 9936606
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/actions/aggregate/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ runs:
ls -R
cd _site
for DISTRIB in debian fedora ubuntu
do ln -s "pdi-master.${DISTRIB}" "$pdi-main.{DISTRIB}"
do
if [ -d "pdi-main.${DISTRIB}" ]
then ln -s "pdi-master.${DISTRIB}" "pdi-main.${DISTRIB}"
fi
done
ls -R
- name: Upload page artifact
Expand Down

0 comments on commit 9936606

Please sign in to comment.