mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
34 lines
677 B
YAML
34 lines
677 B
YAML
name: Update-ReadTheDocs
|
|
|
|
on:
|
|
gollum
|
|
# push:
|
|
# branches:
|
|
# - main
|
|
# paths:
|
|
# - 'wiki-rtd'
|
|
# pull_request:
|
|
# branches:
|
|
# - main
|
|
# paths:
|
|
# - 'wiki-rtd'
|
|
# workflow_dispatch:
|
|
|
|
|
|
jobs:
|
|
|
|
Job1_-_Building_P1:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Update ReadTheDocs wiki-rtd
|
|
id: wiki-rtd-update
|
|
run: |
|
|
git checkout https://github.com/XargonWan/RetroDECK.wiki-rtd.git tmp/wiki-rtd
|
|
cp -rf tmp/wiki-rtd/* wiki-rtd
|
|
rm wiki-rtd/index.md
|
|
mv wiki-rtd/Home.md wiki-rtd/index.md
|
|
git commit -m "Updating wiki-rtd"
|
|
git push |