Skip to content

Add kuro cmake files #13

Add kuro cmake files

Add kuro cmake files #13

name: release documentation
on:
push:
branches:
- 'v*.*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install python packages
run: pip install mkdocs-material==8.3.4 mike
- 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: Get tag of the version
uses: olegtarasov/[email protected]
id: tag_name
- name: Get branch names
id: branch-name
uses: tj-actions/[email protected]
- name: Deploy with mike
run: |
mike deploy --force --push ${{ steps.branch-name.outputs.current_branch }} ${{ steps.tag_name.outputs.tag }}
mike set-default --push stable