mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-25 15:35:38 +00:00
Added ReadTheDocs update pipeline [skip ci]
This commit is contained in:
parent
e78a9e8c74
commit
83df2e1009
29
.github/workflows/update-readthedocs.yml
vendored
Normal file
29
.github/workflows/update-readthedocs.yml
vendored
Normal file
|
@ -0,0 +1,29 @@
|
|||
name: Update-ReadTheDocs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'wiki'
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'wiki'
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
jobs:
|
||||
|
||||
Job1_-_Building_P1:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
||||
- name: Update wiki submodule
|
||||
id: update
|
||||
run: |
|
||||
git submodule update --remote wiki
|
||||
git add wiki
|
||||
git commit -m "Updating wiki [skip ci]"
|
||||
git push
|
Loading…
Reference in a new issue