Skip to content

Bumping version, should be next dev version #1

Bumping version, should be next dev version

Bumping version, should be next dev version #1

Workflow file for this run

name: Deploy Docs
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.x
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- run: git config user.name 'github-actions[bot]' && git config user.email 'github-actions[bot]@users.noreply.github.com'
- name: Deploy docs
run: |
VERSION=$(cat version.txt)
mike deploy --push --update-aliases $VERSION dev
mike set-default --push latest