Skip to content

Commit e0a52f6

Browse files
docs: galaxy info
1 parent 5e08b29 commit e0a52f6

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

README.md

Lines changed: 14 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,16 @@
1010
This role will deploy/redeploy/uninstall and register/unregister local GitHub Actions Runner on Linux and macOS Systems (see [compatibility list](#supported-operating-systems) ).
1111
It supports Enterprise, Organization and Repository Runners.
1212

13-
## Role Installation
13+
## Role Installation (My Galaxy account is currently broken. Please use Github.)
14+
15+
**cli**
16+
17+
```yml
18+
ansible-galaxy role install git+https://github.com/MonolithProjects/ansible-github_actions_runner.git,1.21.1
19+
```
1420

1521
**requirements.yml**
22+
1623
```yml
1724
roles:
1825
- name: monolithprojects.github_actions_runner
@@ -47,13 +54,14 @@ Personal Access Token for GitHub account can be created [here](https://github.co
4754

4855
## Supported Operating Systems
4956

50-
* Red Hat Enterprise Linux 7
51-
* CentOS 7
57+
* Red Hat Enterprise Linux 7+
58+
* CentOS 7+
5259
* Rocky Linux 8+
5360
* Fedora 29+
5461
* Debian 9+
55-
* Ubuntu 16.04+
62+
* Ubuntu 18.04+
5663
* MacOS High Sierra +
64+
* Windows
5765

5866
## Weekly tested on:
5967

@@ -72,7 +80,7 @@ This is a copy from `defaults/main.yml`
7280
runner_user: "{{ lookup('env', 'USER') }}"
7381
7482
# Directory where the local runner will be installed
75-
runner_dir: /opt/actions-runner
83+
runner_dir: "{{ 'C:\\actions-runner' if ansible_facts.system == 'Win32NT' else '/opt/actions-runner' }}"
7684
7785
# Version of the GitHub Actions Runner
7886
runner_version: "latest"
@@ -111,7 +119,7 @@ runner_group: ""
111119
runner_download_repository: "actions/runner"
112120
113121
# Extra arguments to pass to `config.sh`.
114-
# Several arguments muste be set as one string (i.e. "--ephemeral --my_special_fork")
122+
# Several arguments must be set as one string (i.e. "--ephemeral --my_special_fork")
115123
runner_extra_config_args: ""
116124

117125
# Name to assign to this runner in GitHub (System hostname as default)

0 commit comments

Comments
 (0)