Skip to content

Push documentation in /docs/wiki to GitHub wiki #4

Push documentation in /docs/wiki to GitHub wiki

Push documentation in /docs/wiki to GitHub wiki #4

Workflow file for this run

name: "Push documentation in /docs/wiki to GitHub wiki"
on:
push:
branches:
- main
paths:
- "docs/**"
workflow_dispatch:
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Push docs to wiki
env:
GITHUB_TOKEN: ${{ secrets.GH_PERSONAL_ACCESS_TOKEN }}
run: |-
gh auth setup-git
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git clone https://github.com/pavithraes/flowerpot.wiki.git
rm ./flowerpot.wiki/*
cp -r ./docs/* ./flowerpot.wiki/
cd flowerpot.wiki
git add -A
git commit -m "Auto-update from /docs/wiki"
git push --set-upstream origin