Skip to content

Merge pull request #286 from yassun7010/support_snowflake_private_key… #67

Merge pull request #286 from yassun7010/support_snowflake_private_key…

Merge pull request #286 from yassun7010/support_snowflake_private_key… #67

Workflow file for this run

name: docs
on:
push:
tags:
- "v*"
workflow_dispatch:
permissions:
contents: write
env:
POETRY_VIRTUALENVS_CREATE: false
jobs:
deploy-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v3
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- name: Install Poetry
uses: snok/install-poetry@v1
- run: poetry --version
- run: poetry install --no-interaction --all-extras --with docs
- run: mkdocs gh-deploy --force