Skip to content

tag latest release v1.0.0 for helm charts #176

tag latest release v1.0.0 for helm charts

tag latest release v1.0.0 for helm charts #176

Workflow file for this run

name: Docs
on:
push:
branches:
- main
paths:
- "docs/**"
- ".github/workflows/docs.yaml"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Clone docs repository
run: git clone https://x-access-token:${{ secrets.GH_HYPERWEB_PAT }}@github.com/hyperweb-io/docs.hyperweb.io.git external-docs
- name: Sync the docs
run: |
rsync -av --delete ./docs/pages/ ./external-docs/pages/starship/
cd external-docs
git config user.name 'GitHub Action'
git config user.email '[email protected]'
git add .
if git diff --cached --quiet; then
echo "No changes to commit."
else
git commit -m "Aotumated: Update starship documentation from starship repo"
git push
fi