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 5b41cd2 commit d80e1acCopy full SHA for d80e1ac
tasks/install_runner.yml
@@ -37,7 +37,7 @@
37
- name: Download runner package version - "{{ runner_version }}" (RUN ONCE)
38
get_url:
39
url: "https://github.com/actions/runner/releases/download/v{{ runner_version }}/actions-runner-linux-x64-{{ runner_version }}.tar.gz"
40
- dest: "{{ runner_dir }}/actions-runner-linux-{{ runner_version }}.tar.gz"
+ dest: "./actions-runner-linux-{{ runner_version }}.tar.gz"
41
force: no
42
run_once: yes
43
become: false
@@ -47,7 +47,7 @@
47
48
- name: Unarchive package
49
unarchive:
50
- src: "{{ runner_dir }}/actions-runner-linux-{{ runner_version }}.tar.gz"
+ src: "./actions-runner-linux-{{ runner_version }}.tar.gz"
51
dest: "{{ runner_dir }}/"
52
owner: "{{ runner_user }}"
53
#remote_src: yes
0 commit comments