Fix linting
Some checks failed
Linting / YAML Lint (push) Failing after 8s
Linting / Ansible Lint (push) Successful in 18s

This commit is contained in:
2025-11-28 20:13:58 +03:00
parent 942bb7d999
commit 23a2bae7ec
3 changed files with 8 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
--- ---
exclude_paths: exclude_paths:
- ".ansible/" - ".ansible/"
- ".gitea/"
- "galaxy.roles/" - "galaxy.roles/"
- "Taskfile.yml" - "Taskfile.yml"

View File

@@ -1,7 +1,6 @@
name: Linting name: Linting
on: on: push
push
jobs: jobs:
yamllint: yamllint:

View File

@@ -22,7 +22,9 @@
- name: "Install rclone" - name: "Install rclone"
ansible.builtin.command: ansible.builtin.command:
cmd: "{{ eget_bin_path }} rclone/rclone --quiet --upgrade-only --to {{ eget_install_dir }} --asset zip --tag v1.71.2" cmd: >
{{ eget_bin_path }} rclone/rclone --quiet --upgrade-only --to {{ eget_install_dir }} --asset zip
--tag v1.71.2"
changed_when: false changed_when: false
- name: "Install btop" - name: "Install btop"
@@ -42,5 +44,7 @@
- name: "Install task" - name: "Install task"
ansible.builtin.command: ansible.builtin.command:
cmd: "{{ eget_bin_path }} go-task/task --quiet --upgrade-only --to {{ eget_install_dir }} --asset tar.gz --tag v3.45.4" cmd: >
{{ eget_bin_path }} go-task/task --quiet --upgrade-only --to {{ eget_install_dir }} --asset tar.gz
--tag v3.45.4
changed_when: false changed_when: false