Merge pull request #698 from maresb/isolate-integration-test #84
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: | |
- main | |
# Default to bash in login mode; key to activating conda environment | |
# https://github.com/mamba-org/provision-with-micromamba#IMPORTANT | |
defaults: | |
run: | |
shell: "bash -l {0}" | |
permissions: | |
contents: write | |
pages: write | |
env: | |
MICROMAMBA_VERSION: 'latest' | |
jobs: | |
build: | |
name: Deploy docs | |
runs-on: ubuntu-latest | |
concurrency: ci-${{ github.ref }} | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4 | |
with: | |
submodules: "recursive" | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Install dependencies | |
uses: "mamba-org/setup-micromamba@v1" | |
with: | |
micromamba-version: "${{ env.MICROMAMBA_VERSION }}" | |
environment-file: "environments/dev-environment.yaml" | |
cache-environment: true | |
- name: Install conda-lock | |
run: "pip install ." | |
- name: Build site | |
run: mkdocs build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./site | |
user_name: 'github-actions[bot]' | |
user_email: 'github-actions[bot]@users.noreply.github.com' |