From 83df2e10094a48c2e5f00033d5474239d637b345 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Tue, 29 Aug 2023 09:44:54 +0200 Subject: [PATCH] Added ReadTheDocs update pipeline [skip ci] --- .github/workflows/update-readthedocs.yml | 29 ++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/update-readthedocs.yml diff --git a/.github/workflows/update-readthedocs.yml b/.github/workflows/update-readthedocs.yml new file mode 100644 index 00000000..2b57fe9b --- /dev/null +++ b/.github/workflows/update-readthedocs.yml @@ -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 \ No newline at end of file