vieter/.woodpecker/docs.yml

53 lines
1.4 KiB
YAML
Raw Normal View History

2022-09-15 13:42:49 +02:00
variables:
- &vlang_image 'git.rustybever.be/vieter/vlang:5d4c9dc9fc11bf8648541c934adb64f27cb94e37-alpine3.17'
2022-09-15 13:42:49 +02:00
2022-04-30 23:36:52 +02:00
platform: 'linux/amd64'
branches:
exclude: [ main ]
pipeline:
docs:
image: 'klakegg/hugo:ext-alpine'
2022-04-30 23:36:52 +02:00
group: 'generate'
commands:
- apk add git
- make docs
api-docs:
2022-09-15 13:42:49 +02:00
image: *vlang_image
2022-04-30 23:36:52 +02:00
pull: true
group: 'generate'
commands:
- make api-docs
slate-docs:
image: 'slatedocs/slate'
group: 'generate'
# Slate requires a specific directory to run in
2022-04-30 23:36:52 +02:00
commands:
- mv "$CI_WORKSPACE/docs/api" /srv/slate/source
- cd /srv/slate
- /srv/slate/slate.sh build
- mv /srv/slate/build "$CI_WORKSPACE/docs/api-build"
archive:
image: 'alpine'
commands:
- cp -r docs/api-build docs/public/api
- 'cd docs/public && tar czvf ../../docs.tar.gz *'
2022-06-03 22:40:29 +02:00
- 'cd ../../src/_docs && tar czvf ../../api-docs.tar.gz *'
2022-04-30 23:36:52 +02:00
when:
event: push
branch: dev
deploy:
2022-04-30 23:36:52 +02:00
image: 'curlimages/curl'
secrets:
- 'site_api_key'
commands:
- 'curl -XPOST --fail -s -H "Authorization: Bearer $SITE_API_KEY" -T docs.tar.gz https://rustybever.be/api/deploy?dir=docs-vieter'
- 'curl -XPOST --fail -s -H "Authorization: Bearer $SITE_API_KEY" -T api-docs.tar.gz https://rustybever.be/api/deploy?dir=api-docs-vieter'
2022-04-30 23:36:52 +02:00
when:
event: push
branch: dev