fixes with linter

This commit is contained in:
ProgramSnail 2025-08-09 11:47:58 +03:00
parent 932046cc39
commit 66109effc5
20 changed files with 124 additions and 111 deletions

View file

@ -3,16 +3,16 @@
user: typst
repo: typst
action: latest_release
register: typst_version
register: typst_version
- name: "Installing typst {{ typst_version.tag }}"
become: true
ansible.builtin.unarchive:
remote_src: yes
remote_src: true
# TODO: insert v before version ??
src: "https://github.com/typst/typst/releases/download/{{ typst_version.tag }}/typst-x86_64-unknown-linux-musl.tar.xz"
dest: "/usr/bin/"
keep_newer: yes
keep_newer: true
mode: a+x
extra_opts:
- --strip=1
@ -24,17 +24,17 @@
user: Myriad-Dreamin
repo: tinymist
action: latest_release
register: tinymist_version
register: tinymist_version
- name: "Installing tinymist (typst lsp) {{ tinymist_version.tag }}"
become: true
ansible.builtin.unarchive:
remote_src: yes
remote_src: true
# TODO: insert v before version ??, rc ??
src: "https://github.com/Myriad-Dreamin/tinymist/releases/download/{{ tinymist_version.tag }}/tinymist-x86_64-unknown-linux-gnu.tar.gz"
dest: "/usr/bin/"
mode: a+x
keep_newer: yes
keep_newer: true
extra_opts:
- --strip=1
- --no-anchored
@ -45,17 +45,17 @@
user: blopker
repo: codebook
action: latest_release
register: codebook_version
register: codebook_version
- name: "Installing codebook (spellcheck lsp) {{ codebook_version.tag }}"
become: true
ansible.builtin.unarchive:
remote_src: yes
remote_src: true
# TODO: insert v before version ??
src: "https://github.com/blopker/codebook/releases/download/{{ codebook_version.tag }}/codebook-lsp-x86_64-unknown-linux-musl.tar.gz"
dest: "/usr/bin/"
mode: a+x
keep_newer: yes
keep_newer: true
extra_opts:
- --strip=1
- --no-anchored