add labs.kadaster bar #9
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: Publish [version] docs via GitHub Pages | |
on: | |
push: | |
branches: | |
- 'v*.*' | |
jobs: | |
build: | |
name: Generate [version] docs | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: [ 3.8 ] | |
ruby-version: [ 3.0 ] | |
node-version: [ 16.x ] | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
submodules: recursive | |
- name: Configure Git user | |
run: | | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
architecture: x64 | |
cache: 'pip' | |
cache-dependency-path: 'requirements.txt' | |
- name: Install Python dependencies | |
run: python3 -m pip install -r ./requirements.txt | |
- name: Extract branch name | |
shell: bash | |
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
id: extract_branch | |
- name: Deploy with mike 🚀 | |
run: | | |
mike deploy --push ${{ steps.extract_branch.outputs.branch }} |