-
-
Notifications
You must be signed in to change notification settings - Fork 404
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #567 from mgoulao/add-docs-versioning
Add workflows to build docs version
- Loading branch information
Showing
3 changed files
with
129 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 |
---|---|---|
|
@@ -46,3 +46,5 @@ jobs: | |
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: _build | ||
target-folder: main | ||
clean: false |
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,71 @@ | ||
name: Manual Docs Versioning | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Documentation version to create' | ||
required: true | ||
commit: | ||
description: 'Commit used to build the Documentation version' | ||
required: false | ||
latest: | ||
description: 'Latest version' | ||
type: boolean | ||
|
||
permissions: | ||
contents: write | ||
jobs: | ||
docs: | ||
name: Generate Website for new version | ||
runs-on: ubuntu-latest | ||
env: | ||
SPHINX_GITHUB_CHANGELOG_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
if: inputs.commit == '' | ||
|
||
- uses: actions/checkout@v3 | ||
if: inputs.commit != '' | ||
with: | ||
ref: ${{ inputs.commit }} | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install ViZDoom dependencies | ||
run: sudo apt install cmake git libboost-all-dev libsdl2-dev libopenal-dev | ||
|
||
- name: Install ViZDoom | ||
run: pip install .[gym] | ||
|
||
- name: Install docs dependencies | ||
run: pip install -r docs/requirements.txt | ||
|
||
- name: Build docs | ||
run: sphinx-build -b dirhtml -v docs _build | ||
|
||
- name: Move 404 | ||
run: mv _build/404/index.html _build/404.html | ||
|
||
- name: Update 404 links | ||
run: python docs/_scripts/move_404.py _build/404.html | ||
|
||
- name: Remove .doctrees | ||
run: rm -r _build/.doctrees | ||
|
||
- name: Upload to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: _build | ||
target-folder: ${{ inputs.version }} | ||
clean: false | ||
|
||
- name: Upload to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
if: inputs.latest | ||
with: | ||
folder: _build | ||
clean-exclude: | | ||
*.*.*/ | ||
main |
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,56 @@ | ||
name: Docs Versioning | ||
on: | ||
push: | ||
tags: | ||
- 'v?*.*.*' | ||
permissions: | ||
contents: write | ||
jobs: | ||
docs: | ||
name: Generate Website for new version | ||
runs-on: ubuntu-latest | ||
env: | ||
SPHINX_GITHUB_CHANGELOG_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.9' | ||
|
||
- name: Install ViZDoom dependencies | ||
run: sudo apt install cmake git libboost-all-dev libsdl2-dev libopenal-dev | ||
|
||
- name: Install ViZDoom | ||
run: pip install .[gym] | ||
|
||
- name: Install docs dependencies | ||
run: pip install -r docs/requirements.txt | ||
|
||
- name: Build docs | ||
run: sphinx-build -b dirhtml -v docs _build | ||
|
||
- name: Move 404 | ||
run: mv _build/404/index.html _build/404.html | ||
|
||
- name: Update 404 links | ||
run: python docs/_scripts/move_404.py _build/404.html | ||
|
||
- name: Remove .doctrees | ||
run: rm -r _build/.doctrees | ||
|
||
- name: Upload to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
with: | ||
folder: _build | ||
target-folder: ${{github.ref_name}} | ||
clean: false | ||
|
||
- name: Upload to GitHub Pages | ||
uses: JamesIves/github-pages-deploy-action@v4 | ||
if: ${{ !contains(github.ref_name, 'a') }} | ||
with: | ||
folder: _build | ||
clean-exclude: | | ||
*.*.*/ | ||
main |