ansible-gitea-management/tasks/gitea/theme.yml

31 lines
723 B
YAML
Raw Normal View History

2022-03-04 05:15:25 +00:00
---
- name: Deploy all theme files
2022-03-28 00:53:47 +00:00
ansible.builtin.copy:
2022-03-04 05:15:25 +00:00
src: "var/lib/gitea/custom/public/css/{{ item }}"
dest: "/var/lib/gitea/custom/public/css/{{ item }}"
mode: '0644'
owner: git
group: git
with_items:
- theme-carbonred.css
- theme-darkred.css
- theme-gitea-blue.css
- theme-gitea-modern.css
- theme-pitchblack.css
2022-04-25 15:25:59 +00:00
- theme-earl-grey.css
2024-03-23 03:09:05 +00:00
- name: Deploy RESF assets
ansible.builtin.copy:
src: "var/lib/gitea/custom/public/assets/img/{{ item }}"
dest: "/var/lib/gitea/custom/public/assets/img/{{ item }}"
mode: '0644'
owner: git
group: git
with_items:
- apple-touch-icon.png
- favicon.png
- favicon.svg
- logo.png
- logo.svg
2022-03-04 05:15:25 +00:00
...