File tree 1 file changed +1
-12
lines changed
1 file changed +1
-12
lines changed Original file line number Diff line number Diff line change 14
14
fail-fast : false
15
15
matrix :
16
16
ansible :
17
- - " 2.9"
18
- - " 2.10"
19
17
- " 2.12"
20
18
steps :
21
19
# Checks-out the repository under $GITHUB_WORKSPACE, so it's accessible to the job
25
23
run : |
26
24
pipx uninstall ansible-core
27
25
python3 -m pip install --upgrade pip
28
- ansible_version=${{ matrix.ansible }}
29
- if [[ "${{ matrix.ansible }}" = "2.9" ]]; then
30
- ansible_package=ansible
31
- elif [[ "${{ matrix.ansible }}" = "2.10" ]]; then
32
- ansible_package=ansible
33
- ansible_version=3
34
- else
35
- ansible_package=ansible-core
36
- fi
37
- python3 -m pip install $ansible_package==$ansible_version.* docker git+https://github.com/stackhpc/ansible-modules-hashivault@stackhpc
26
+ python3 -m pip install ansible-core==${{ matrix.ansible }}.* docker git+https://github.com/stackhpc/ansible-modules-hashivault@stackhpc
38
27
ansible-galaxy collection build
39
28
ansible-galaxy collection install *.tar.gz
40
29
You can’t perform that action at this time.
0 commit comments