docs: added config for docker2s2, plus What's New for v2.1.2 (#185) #167
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
name: deploy | |
on: | |
push: | |
branches: | |
- main | |
release: | |
types: | |
- published | |
env: | |
PYTHON_VERSION: 3.11 | |
permissions: | |
contents: write | |
jobs: | |
build_site: | |
name: Build Site | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python runtime | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Set up build cache | |
uses: actions/cache@v3 | |
id: cache | |
with: | |
key: ${{ runner.os }}-${{ hashFiles('.cache/**') }} | |
path: .cache | |
- name: Install Python dependencies | |
run: | | |
pip install -r requirements.txt | |
- if: github.event_name == 'release' && github.event.action == 'published' | |
name: Deploy site | |
run: | | |
mkdocs --version | |
#mkdocs gh-deploy --force | |
mike --version | |
git config --global user.email "${{ github.actor }}@users.noreply.github.com" | |
git config --global user.name "${{ github.actor }}" | |
mike deploy --push --template go-import/redirect.html --update-aliases ${{ github.event.release.tag_name }} latest zot | |
mike set-default --push latest | |
- if: github.event_name == 'release' && github.event.action == 'published' | |
name: Build PDF document | |
run: | | |
mkdocs --version | |
mkdocs build | |
- if: github.event_name == 'release' && github.event.action == 'published' | |
name: Publish artifacts on releases | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: site/pdf/document.pdf | |
tag: ${{ github.ref }} | |
overwrite: true | |
file_glob: true |