Skip to content

Merge pull request #153 from vrk-kpa/typo-fixes-2024-03-14 #47

Merge pull request #153 from vrk-kpa/typo-fixes-2024-03-14

Merge pull request #153 from vrk-kpa/typo-fixes-2024-03-14 #47

Workflow file for this run

# Deploy ARF as static content to GitHub Pages
name: Deploy ARF to Pages
on:
# Runs on pushes targeting the default branch
push:
branches: ["main"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.x
- 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-
- run: pip install mkdocs-material mike
- run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
- run: git pull
- run: mike set-default 1.3.0
- run: mike deploy --push 1.3.0