forked from loliee/ansible-zsh
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (45 loc) · 1.24 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
name: Ansible CI
on:
push:
branches: [ master ]
tags: [ 'v*' ]
pull_request:
branches: [ master ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
distro: [
ubuntu2004, ubuntu2204, ubuntu2404,
debian10, debian11, debian12,
rockylinux9,
]
steps:
-
uses: actions/checkout@v4
-
name: Download test shim.
run: |
wget -O "${PWD}/tests/test-ansible-role.sh" https://raw.githubusercontent.com/esolitos/gists/master/shell/test-ansible-role.sh
chmod +x "${PWD}/tests/test-ansible-role.sh"
-
name: Run test
run: ${PWD}/tests/test-ansible-role.sh -d ${{ matrix.distro }}
publish:
# Run this job only if the push event is triggered by a tag.
if: github.event_name == 'push' && github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/v')
needs:
- test
runs-on: ubuntu-latest
env:
ansible-galaxy-key: ${{ secrets.ANSIBLE_GALAXY_KEY }}
steps:
-
uses: actions/checkout@v4
-
name: Publish Ansible role to Galaxy
uses: robertdebock/[email protected]
with:
galaxy_api_key: ${{ env.ansible-galaxy-key }}