-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4bf942
commit f266244
Showing
2 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Files/Directories to be excluded from the ansible-galaxy build | ||
docs/ | ||
changelogs/ | ||
CHANGELOG.md | ||
.github/ | ||
group_vars/ | ||
poetry.lock | ||
pyproject.toml | ||
README.md | ||
.readthedocs.yml | ||
LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
version: 2 | ||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.11" | ||
commands: | ||
- pip install -r docs/requirements.txt | ||
- pip install ansible | ||
- ansible-galaxy collection install . | ||
- bash docs/build.sh | ||
- mkdir -p $READTHEDOCS_OUTPUT/html | ||
- cp -r docs/build/html/* $READTHEDOCS_OUTPUT/html/ |