10 lines
214 B
YAML
10 lines
214 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"
|