go-tools/.ansible/playbook.yml
xuu a5780449fc
All checks were successful
Go Bump / bump (push) Successful in 46s
Go Test / test (push) Successful in 1m1s
Deploy / deploy (push) Successful in 2m8s
fix: error
2023-10-01 17:18:28 -06:00

25 lines
469 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: Copy build to remote
# ansible.builtin.copy:
# src: ev.service
# dest: /etc/systemd/system/ev.service
# owner: root
# group: root
- name: Restart service
systemd:
name: ev
enabled: true
state: restarted