go-tools/.ansible/playbook.yml
xuu c1a96a82ba
Some checks failed
Go Test / test (push) Successful in 49s
Go Test / deploy (push) Failing after 1m32s
build: add gitea runner
2023-09-30 10:13:01 -06:00

17 lines
292 B
YAML

---
- name: Deploy EV
hosts: lavana
tasks:
- name: Copy build to remote
ansible.builtin.copy:
src: build/ev
dest: /usr/local/bin/ev
owner: root
group: root
- name: Restart service
systemd:
name: ev
enabled: true
state: restarted