We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9024aac commit 31bdabbCopy full SHA for 31bdabb
.github/workflows/deploy.yml
@@ -49,7 +49,9 @@ jobs:
49
package
50
51
- name: Install ansible
52
- run: pip3 install --user ansible==2.10.17
+ # The command pip3 install --user ansible==2.10.17 doesn't work as we have an old version
53
+ # See https://docs.ansible.com/ansible/2.10/installation_guide/intro_installation.html#installing-devel-from-github-with-pip
54
+ run: python3 -m pip install --user https://github.com/ansible/ansible/archive/refs/tags/v2.10.17.tar.gz
55
56
- name: Run deploy.sh
57
env:
0 commit comments