Support aliases in 'config add-release-channel' and '--url-source' #1017
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: MkDocs | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- master | |
jobs: | |
mkdocs: | |
name: mkdocs | |
runs-on: ubuntu-latest | |
env: | |
JSON_VERSION: "0.0.7" | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
submodules: 'true' | |
- name: Install mkdocs deps | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y python3-pip | |
sudo pip3 install mkdocs | |
- name: Run mkdocs | |
run: | | |
mkdocs build |