forked from public-mirrors/HuskSync
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
443 B
YAML
24 lines
443 B
YAML
name: Update Docs
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'master' ]
|
|
paths:
|
|
- 'docs/**'
|
|
- 'workflows/**'
|
|
tags-ignore:
|
|
- '*'
|
|
|
|
permissions:
|
|
contents: write
|
|
|
|
jobs:
|
|
deploy-wiki:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: 'Checkout for CI 🛎️'
|
|
uses: actions/checkout@v4
|
|
- name: 'Push Docs to Github Wiki 📄️'
|
|
uses: Andrew-Chen-Wang/github-wiki-action@v4
|
|
with:
|
|
path: 'docs' |