We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fca2540 commit f05ab3aCopy full SHA for f05ab3a
gh_install.yaml
@@ -12,14 +12,15 @@
12
mode: '0755'
13
14
- name: Download GitHub CLI archive keyring
15
- get_url:
+ ansible.builtin.get_url:
16
url: https://cli.github.com/packages/githubcli-archive-keyring.gpg
17
dest: /tmp/githubcli-archive-keyring.gpg
18
19
- name: Copy GitHub CLI archive keyring to /etc/apt/keyrings
20
- copy:
+ ansible.builtin.copy:
21
src: /tmp/githubcli-archive-keyring.gpg
22
dest: /etc/apt/keyrings/githubcli-archive-keyring.gpg
23
+ remote_src: yes
24
mode: '0644'
25
26
- name: Add GitHub CLI repository
0 commit comments