Skip to content

docs: Adds postgres operator cheat sheet #268

docs: Adds postgres operator cheat sheet

docs: Adds postgres operator cheat sheet #268

Workflow file for this run

name: pages build and deployment
on:
push:
branches:
- main
paths:
- "mkdocs.yml"
- "docs/**"
- ".github/workflows/mkdocs.yml"
pull_request:
paths:
- "mkdocs.yml"
- "docs/**"
- ".github/workflows/mkdocs.yml"
workflow_dispatch:
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: markdownlint
uses: nosborn/[email protected]
with:
files: docs
config_file: .markdownlint.yml
- uses: actions/setup-python@v5
with:
python-version: 3.x
cache: pip
cache-dependency-path: requirements-docs.txt
- run: pip install -r requirements-docs.txt
- run: rm -rf docs/workflows && mkdir docs/workflows
- run: python scripts/argo-workflows-to-mkdocs.py argo-workflows docs/workflows
- run: mkdocs build --strict
- uses: actions/upload-pages-artifact@v2
with:
path: site/
deploy:
# depend on the docs being built
needs: build
# ensure we only run on commits to the main branch or manual workflows executions
if: ${{ github.ref == 'refs/heads/main' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch') }}
runs-on: ubuntu-latest
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
permissions:
pages: write # to deploy to Pages
id-token: write # to verify the deployment originates from an appropriate source
# Deploy to the github-pages environment
environment:
name: "github-pages"
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2