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:
- ".ansible/"
- ".gitea/"
- "galaxy.roles/"
- "Taskfile.yml"

View File

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

View File

@@ -22,7 +22,9 @@
- name: "Install rclone"
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
- name: "Install btop"
@@ -42,5 +44,7 @@
- name: "Install task"
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