Deploy documentation #9
Workflow file for this run
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
--- | |
# This is a manually triggered workflow to build and publish the MkDocs from the | |
# main branch to GitHub pages at https://aquasecurity.github.io/kube-bench. | |
name: Deploy documentation | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: Version to be deployed | |
required: true | |
jobs: | |
deploy: | |
name: Deploy documentation | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
persist-credentials: true | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- run: | | |
pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git | |
pip install mike | |
pip install mkdocs-macros-plugin | |
env: | |
# Note: It is not the same as ${{ secrets.GITHUB_TOKEN }} ! | |
GH_TOKEN: ${{ secrets.MKDOCS_AQUA_BOT }} | |
- run: | | |
git config user.name "aqua-bot" | |
git config user.email "aqua-bot@users.noreply.github.com" | |
- run: | | |
mike deploy --push --update-aliases ${{ github.event.inputs.version }} latest |