Skip to content

feat: Update gitops multi-cluster pattern to use the new eks pod iden… #281

feat: Update gitops multi-cluster pattern to use the new eks pod iden…

feat: Update gitops multi-cluster pattern to use the new eks pod iden… #281

Workflow file for this run

name: Publish docs via GitHub Pages
on:
push:
branches:
- main
env:
PYTHON_VERSION: 3.x
permissions:
contents: read
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Harden Runner
uses: step-security/harden-runner@v2
with:
egress-policy: audit
- name: Checkout main
uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
fetch-depth: 0
- name: Set up Python ${{ env.PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install mkdocs-material==9.3.1 \
mkdocs-include-markdown-plugin==6.0.1 \
mkdocs-awesome-pages-plugin==2.9.2
- name: git config
run: |
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
- run: mkdocs gh-deploy --force