leuchttuerme-ostsee/.drone.yml
kekskurse 105a2d8a0f
Some checks failed
continuous-integration/drone/push Build is failing
test branching
2022-10-14 16:19:42 +02:00

20 lines
No EOL
355 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: klakegg/hugo:0.101.0
commands:
- hugo build
- ls -la
- ls -lah public
- name: release
image: docker:git
commands:
- mkdir /tmp/webpage
- cp -R public/* /tmp/webpage
- git checkout webpage
- git pull origin webpage
- rm -r -f *
- cp -R /tmp/webpage/* ./
- ls -lah