* Tweak some release-build script parameters * adapt test to new release scripting * whoopsies * fix sh permissions * some fixes * use with * test bump * don't build indexes when running without production flag either * also validate the catalog * PWD/catalog * mtching " * Don't make change to primary repo when building catalog * Add doc generation feature * try fetch depth 100 * remove helm-prep step to speedup test init * also generate general docs * adapt release workflow and some workflow cleanup
27 lines
558 B
YAML
27 lines
558 B
YAML
name: "Docs: Deploy"
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- master
|
|
paths:
|
|
- 'docs/**'
|
|
- '.github/workflows/docs.deploy.yaml'
|
|
- 'mkdocs.yml'
|
|
|
|
jobs:
|
|
build:
|
|
name: Deploy Wiki
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
token: ${{ secrets.BOT_TOKEN }}
|
|
|
|
- name: Deploy docs
|
|
uses: mhausenblas/mkdocs-deploy-gh-pages@master
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.BOT_TOKEN }}
|
|
REQUIREMENTS: docs/requirements.txt
|