Skip to content

Update update_wiki.yml #23

Update update_wiki.yml

Update update_wiki.yml #23

Workflow file for this run

name: Update Wiki
on:
push:
branches:
- main
jobs:
update-wiki:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Set up Git
run: |
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git config --global user.name "github-actions[bot]"
- name: Clone Wiki Repository
env:
GITHUB_TOKEN: ${{ secrets.DOC_UPDATE }}
run: |
git clone https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.wiki.git wiki
continue-on-error: true
- name: Remove Old Wiki Content
run: |
echo "Removing old wiki content..."
rm -rf wiki/*
- name: Copy Files to Wiki
run: |
echo "Copying files..."
cp -r docs/* wiki/
ls -la wiki # List files to verify copying
- name: Create Custom Sidebar
run: |
echo "Creating custom sidebar..."
echo "# Sidebar" > wiki/_Sidebar.md
echo "* [Introduction](Introduction.md)" >> wiki/_Sidebar.md
echo "* [Configurations](Configurations.md)" >> wiki/_Sidebar.md
echo "* [SETUP and Installation](SETUP-and-Installation.md)" >> wiki/_Sidebar.md
echo "* [FAQ](FAQ.md)" >> wiki/_Sidebar.md
cat wiki/_Sidebar.md # Output the updated _Sidebar.md
- name: Commit and Push Changes to Wiki
run: |
cd wiki
git add .
git commit -m "Update wiki content and custom sidebar" || echo "No changes to commit"
git push
continue-on-error: true
- name: List files in wiki directory after push
run: ls -la wiki