mirror of
https://github.com/discordeno/discordeno.git
synced 2026-05-31 07:50:07 +00:00
22 lines
425 B
YAML
22 lines
425 B
YAML
name: Docs
|
|
|
|
on:
|
|
push:
|
|
paths:
|
|
- "docs/**"
|
|
|
|
jobs:
|
|
file_sync:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Fetching Local Repository
|
|
uses: actions/checkout@master
|
|
- name: File Sync
|
|
uses: kbrashears5/github-action-file-sync@v2.0.0
|
|
with:
|
|
REPOSITORIES: |
|
|
discordeno/guide@main
|
|
FILES: |
|
|
docs/=.
|
|
TOKEN: ${{ secrets.DOCS_SYNC }}
|