Merge pull request #1215 from kapicorp/adds-mike-deployment #233
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: Build and deploy documentation on merge to master | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
on: | |
pull_request: | |
paths: | |
- 'docs/**' | |
- '.github/worklows/documentation.yml' | |
- 'requirements.docs.txt' | |
- 'Dockerfile.docs' | |
- 'mkdocs.yml' | |
- 'CNAME' | |
push: | |
branches: | |
- master | |
paths: | |
- 'docs/**' | |
- '.github/worklows/documentation.yml' | |
- 'requirements.docs.txt' | |
- 'Dockerfile.docs' | |
- 'mkdocs.yml' | |
- 'CNAME' | |
jobs: | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout kapitan recursively | |
uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: pip install --upgrade pip && pip install -r requirements.docs.txt | |
- run: mkdocs build | |
- name: Deploy docs | |
if: github.event_name != 'pull_request' && github.ref_name == github.event.repository.default_branch | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: mike deploy --push dev master |