Skip to content

feat: configurable branch prefix for Shortcut VCS integration (#29) #89

feat: configurable branch prefix for Shortcut VCS integration (#29)

feat: configurable branch prefix for Shortcut VCS integration (#29) #89

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [main]
paths:
- 'docs/**'
- 'mkdocs.yml'
- 'requirements.txt'
- 'CONTRIBUTING.md'
- 'CHANGELOG.md'
- 'CODE_OF_CONDUCT.md'
- 'SECURITY.md'
workflow_dispatch:
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build docs
run: mkdocs build --strict
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site
# Preserve the Helm chart index.yaml and .tgz assets written to
# gh-pages by the chart-releaser step in release.yaml.
keep_files: true