123456789101112131415161718192021222324 |
- steps:
- ldoc-generate:
- image: alpine
- commands:
- - apk update
- - apk add git ldoc
- - ldoc .
- - git init ldoc_output
- ldoc-push:
- depends_on: ldoc-generate
- image: appleboy/drone-git-push
- settings:
- ssh_key:
- from_secret: ssh_key
- remote: git@codeberg.org:y5nw/advtrains-doc-integration
- branch: pages
- path: ldoc_output
- force: true
- commit: true
- commit_message: "[CI SKIP] LDoc for commit ${CI_COMMIT_SHA}"
- when:
- - event: push
- branch: master
|