Skip to content

Merge pull request #434 from kubernetes-sigs/dependabot/github_action… #1

Merge pull request #434 from kubernetes-sigs/dependabot/github_action…

Merge pull request #434 from kubernetes-sigs/dependabot/github_action… #1

Workflow file for this run

name: github pages
permissions:
contents: write
on:
push:
paths:
- "docs/**"
- ".github/workflows/docs.yml"
branches:
- main # Set a branch to deploy
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
with:
submodules: true # Fetch Hugo themes (true OR recursive)
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
- name: Setup Hugo
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # v2.5.0
with:
hugo-version: 'latest'
extended: true
- name: Build
run: cd docs && npm install && hugo --minify
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@5c6e9e9f3672ce8fd37b9856193d2a537941e66c # v4.6.1
with:
folder: ./docs/public # The folder the action should deploy.