Skip to content

Instantly share code, notes, and snippets.

@jlevon
Created October 12, 2022 23:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jlevon/ba03de5ac050114b5eb52b29e45a91ba to your computer and use it in GitHub Desktop.
Save jlevon/ba03de5ac050114b5eb52b29e45a91ba to your computer and use it in GitHub Desktop.
ansible for github cli updating
---
- name: find latest release
uri:
url: https://api.github.com/repos/cli/cli/releases/latest
register: latest_release
- name: Install Github CLI deb from github
become: true
apt:
deb: >-
https://github.com/cli/cli/releases/download/{{tag}}/gh_{{tag | replace('v','')}}_linux_amd64.deb
vars:
tag: "{{ latest_release.json.tag_name }}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment