diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b3dd49e01..0d20cb71e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -71,6 +71,12 @@ jobs: name: collection path: .cache/collection-tarballs + - name: Create ansible.cfg file + run: | + echo "[galaxy]" > ansible.cfg + echo "server = https://old-galaxy.ansible.com/" >> ansible.cfg + cat ansible.cfg + - name: Install the collection tarball run: ansible-galaxy collection install .cache/collection-tarballs/*.tar.gz @@ -108,6 +114,12 @@ jobs: name: collection path: .cache/collection-tarballs + - name: Create ansible.cfg file + run: | + echo "[galaxy]" > ansible.cfg + echo "server = https://old-galaxy.ansible.com/" >> ansible.cfg + cat ansible.cfg + - name: Install the collection tarball run: ansible-galaxy collection install .cache/collection-tarballs/*.tar.gz