| 123456789101112131415161718192021222324252627 |
- kind: pipeline
- type: exec
- name: default
- platform:
- os: linux
- arch: amd64
- steps:
- - name: copy
- commands:
- - cp ./*.css /home/gogs/gogs/custom/public/css/themes/
- - name: inject
- commands:
- - echo "<link rel="stylesheet" href="/css/themes/dark-theme.css" />" > /home/gogs/gogs/custom/templates/inject/head.tmpl
- - echo "<link rel="stylesheet" href="/css/themes/simplemde-dark.css" />" >> /home/gogs/gogs/custom/templates/inject/head.tmpl
- - echo "<link rel="stylesheet" href="/css/themes/codemirror-material.css" />" >> /home/gogs/gogs/custom/templates/inject/head.tmpl
- - name: restart
- commands:
- - docker container restart gogs
-
- trigger:
- branch:
- - master
|