.drone.yml 652 B

123456789101112131415161718192021222324
  1. kind: pipeline
  2. type: exec
  3. name: default
  4. platform:
  5. os: linux
  6. arch: amd64
  7. steps:
  8. - name: copy
  9. commands:
  10. - cp ./*.css /home/gogs/gogs/custom/public/css/themes/
  11. - name: inject
  12. commands:
  13. - echo "<link rel="stylesheet" href="/css/themes/dark-theme.css" />" > /home/gogs/gogs/custom/templates/inject/head.tmpl
  14. - echo "<link rel="stylesheet" href="/css/themes/simplemde-darker.css" />" >> /home/gogs/gogs/custom/templates/inject/head.tmpl
  15. - echo "<link rel="stylesheet" href="/css/themes/codemirror-material.css" />" >> /home/gogs/gogs/custom/templates/inject/head.tmpl
  16. trigger:
  17. branch:
  18. - master