fix: Support kustomize v5 labels transformer. Fixes #3105 (#3775) #1201
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: Deploy-Docs | |
on: | |
push: | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
deploy: | |
permissions: | |
contents: write # for peaceiris/actions-gh-pages to push pages branch | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.x | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: '1.22' | |
- name: build | |
run: | | |
pip install mkdocs mkdocs_material | |
make docs | |
mkdocs build | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./site |