Skip to content

more docs of project structure #6

more docs of project structure

more docs of project structure #6

Workflow file for this run

name: Sync Docs
on:
push:
branches:
- 'master'
paths:
- 'docs/**'
workflow_dispatch:
permissions:
contents: write
jobs:
# TODO add or-docs-or-non-docs validation here?
sync-docs:
name: Sync Docs
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Add Docs Source
run: git remote add wiki https://github.com/vorant94/subs-savvy.wiki.git
- name: Fetch Added Docs
run: git fetch --all
- name: Push Docs Source
run: git subtree push --prefix docs wiki master