Skip to content

[chore]: Add helm verify instructions (#2269) #1

[chore]: Add helm verify instructions (#2269)

[chore]: Add helm verify instructions (#2269) #1

Workflow file for this run

name: Sync README to gh-pages
permissions: {}
on:
push:
branches:
- main
paths:
- 'README.md'
jobs:
sync:
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
- name: Copy README to temp
run: cp -f README.md ${{ runner.temp }}/README.md
- name: Checkout gh-pages
uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
ref: gh-pages
- name: Sync README and push
run: |
cp -f ${{ runner.temp }}/README.md .
git config user.name "$GITHUB_ACTOR"
git config user.email "$GITHUB_ACTOR@users.noreply.github.com"
git add README.md
git commit --signoff -m "Sync README from main" || exit 0
git push