File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 68
68
69
69
- name : Download runner package version - "{{ runner_version }}" (RUN ONCE)
70
70
get_url :
71
- url : " https://github.com/actions/runner/releases/download/v{{ runner_version }}/actions-runner-linux-x64 -{{ runner_version }}.tar.gz"
71
+ url : " https://github.com/actions/runner/releases/download/v{{ runner_version }}/actions-runner-linux-{{ github_actions_architecture }} -{{ runner_version }}.tar.gz"
72
72
dest : " {{ runner_pkg_tempdir }}/actions-runner-linux-{{ runner_version }}.tar.gz"
73
73
force : no
74
74
run_once : yes
Original file line number Diff line number Diff line change 1
1
---
2
2
# vars file for ansible-github_actions_runner
3
+ github_actions_architecture_map :
4
+ amd64 : x64
5
+ x86_64 : x64
6
+ armv7l : arm
7
+ aarch64 : arm64
8
+ github_actions_architecture : " {{ github_actions_architecture_map[ansible_architecture] }}"
You can’t perform that action at this time.
0 commit comments