Skip to content

Commit 00a4f62

Browse files
authored
Replace ANSIBLE_COLLECTIONS_PATHS with ANSIBLE_COLLECTIONS_PATH. (#102)
Ansible-core 2.19 removed support for ANSIBLE_COLLECTIONS_PATHS, and I don't think we have to care about Ansible 2.9 support anymore.
1 parent 719619e commit 00a4f62

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/_shared-docs-build-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ jobs:
242242
colpath = inputs['collection-name'].replace('.', '/')
243243
}
244244
245-
core.exportVariable('ANSIBLE_COLLECTIONS_PATHS', process.env.GITHUB_WORKSPACE)
245+
core.exportVariable('ANSIBLE_COLLECTIONS_PATH', process.env.GITHUB_WORKSPACE)
246246
247247
const checkoutPath = `ansible_collections/${colpath}`
248248

.github/workflows/_shared-docs-build-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
colpath = colname.replace('.', '/')
176176
}
177177
178-
core.exportVariable('ANSIBLE_COLLECTIONS_PATHS', process.env.GITHUB_WORKSPACE)
178+
core.exportVariable('ANSIBLE_COLLECTIONS_PATH', process.env.GITHUB_WORKSPACE)
179179
180180
const checkoutPath = `ansible_collections/${colpath}`
181181

.github/workflows/generate-wiki-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
generate:
2020
env:
2121
WIKI: ${{ github.workspace }}/wiki
22-
ANSIBLE_COLLECTIONS_PATHS: ${{ github.workspace }}/.internal/ansible
22+
ANSIBLE_COLLECTIONS_PATH: ${{ github.workspace }}/.internal/ansible
2323
runs-on: ubuntu-latest
2424
steps:
2525
- if: fromJSON(env.SHOULD_RUN)

0 commit comments

Comments
 (0)