Skip to content

Commit bc602e2

Browse files
Merge pull request #84 from MonolithProjects/develop
2 parents 403c5f3 + 87e12af commit bc602e2

File tree

5 files changed

+8
-4
lines changed

5 files changed

+8
-4
lines changed

.github/workflows/main.yml

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
tag: "latest"
3232
- os: "ubuntu20"
3333
tag: "latest"
34+
- os: "rockylinux8"
35+
tag: "latest"
3436
steps:
3537
- name: checkout
3638
uses: actions/checkout@v2

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ Personal Access Token for GitHub account can be created [here](https://github.co
3737
* CentOS/RHEL 7,8
3838
* Debian 9,10
3939
* Fedora 34
40+
* Rocky Linux 8
4041
* Ubuntu 18,20
4142

4243
**Note:** Fedora 32+ and Ubuntu 20 must use Ansible 2.9.8+. Other distros/releases will work also with older 2.8.0+ Ansible.

molecule/default/cleanup.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
- github_account: monolithprojects-testorg
1010
- runner_state: absent
1111
roles:
12-
- ansible-github_actions_runner
12+
- ansible-github_actions_runner

molecule/default/molecule.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,4 @@ scenario:
4040
- idempotence
4141
- verify
4242
- cleanup
43-
- destroy
43+
- destroy

tasks/install_deps.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@
8787
update_cache: yes
8888
when: (ansible_distribution == "RedHat") or
8989
(ansible_distribution == "CentOS") or
90-
(ansible_distribution == "Fedora")
90+
(ansible_distribution == "Fedora") or
91+
(ansible_distribution == "Rocky")
9192
tags:
92-
- install
93+
- install

0 commit comments

Comments
 (0)