Skip to content

Commit

Permalink
feat: Download and install DevToys in dev_tools_gui.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Goran Ninkovic committed Jul 18, 2024
1 parent 836ac58 commit 516aff6
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions post-installation/tasks/dev_tools_gui.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,3 +147,16 @@
become: false
register: zed_installed
changed_when: zed_installed.rc == 0

- name: Download and install DevToys
block:
- name: Download DevToys
ansible.builtin.get_url:
url: https://github.com/DevToys-app/DevToys/releases/download/v2.0.4.0/devtoys_linux_x64.deb
dest: "{{ download_dir }}/DevToys.deb"
mode: "0644"

- name: Install DevToys
ansible.builtin.apt:
deb: "{{ download_dir }}/DevToys.deb"
force: true

0 comments on commit 516aff6

Please sign in to comment.