Publishes the github wiki and runs these in concurrency groups to avoid spawning multiple actions at a time. Signed-off-by: kingbri <8082010+kingbri1@users.noreply.github.com>
19 lines
347 B
YAML
19 lines
347 B
YAML
name: Deploy to Wiki
|
|
on:
|
|
push:
|
|
branches: ['main']
|
|
|
|
concurrency:
|
|
group: "wiki-deploy-${{ github.ref }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
deploy-wiki:
|
|
permissions:
|
|
contents: write
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions4gh/deploy-wiki@v1
|
|
with:
|
|
path: ./docs
|