I have a library with multiple Git branches where I would like to generate an HTML documentation for every branch. Unfortunately, even making sub-directories named like their branch, the pipeline of each branch seems to replace the whole public directory instead of doing additive folder additions.
Is there a way to have each branch contribute to the page without erasing the content contributed by other branches ? Thank you
EDIT with the page generation stage:
pages: image: norionomura/jazzy tags: - ruby script: - swift build - sourcekitten doc --spm-module Lilas > lilas.json - jazzy --clean --min-acl internal --sourcekitten-sourcefile lilas.json --output public artifacts: paths: - public only: - develop