Skip to content

Commit

Permalink
Update tqm role to pull from saltydk (saltyorg#390)
Browse files Browse the repository at this point in the history
  • Loading branch information
joshk6656 authored Oct 4, 2024
1 parent 8fc0d3f commit b7cfdc9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions roles/tqm/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@

- name: Set variable for output of tqm releases
ansible.builtin.uri:
url: "{{ svm }}https://api.github.com/repos/l3uddz/tqm/releases/latest"
url: "{{ svm }}https://api.github.com/repos/saltydk/tqm/releases/latest"
register: tqm_releases

- name: Get the url for latest amd64 tqm binary
ansible.builtin.set_fact:
tqm_latest: "{{ tqm_releases.json.assets | selectattr('name', '==', 'tqm_v1.5.0_linux_amd64') | map(attribute='browser_download_url') | join('') }}"
tqm_latest: "{{ tqm_releases.json.assets | selectattr('name', 'search', '_linux_amd64') | map(attribute='browser_download_url') | join('') }}"

- name: Download tqm binary
ansible.builtin.get_url:
Expand Down

0 comments on commit b7cfdc9

Please sign in to comment.