9 lines
230 B
YAML
9 lines
230 B
YAML
- name: Installing Go apps
|
|
become_user: "{{ USER }}"
|
|
shell: "go install {{ item }}"
|
|
with_items: "{{ go_apps }}"
|
|
when: go_apps is defined
|
|
|
|
- name: Build Bat Cache
|
|
become_user: "{{ USER }}"
|
|
shell: "bat cache --build"
|