blog-hexo/.drone.yml
2024-06-04 14:14:20 +08:00

22 lines
410 B
YAML

---
kind: pipeline
type: exec
name: blog 发布
steps:
- name: list
commands:
- ls -la /tmp
- ls -la .
- pwd
- whoami
- name: publish
commands:
- pwd
- ls -lah
- ls -lah public/
- cp -rf public/* /www/wwwroot/caddy/html/blog-hexo/
- ls -lah /www/wwwroot/
- ls -lah /www/wwwroot/caddy/html/blog-hexo/
- echo all works done!