From e3ee06c23e27a8b302b623b8730d07f0a01ad660 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 10 Sep 2024 09:55:52 -0400 Subject: [PATCH 1/2] Add wiki submodule --- .gitmodules | 3 +++ content/wiki | 1 + 2 files changed, 4 insertions(+) create mode 100644 .gitmodules create mode 160000 content/wiki diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..12cc9e4 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "content/wiki"] + path = content/wiki + url = https://forge.ilot.io/ilot/wiki diff --git a/content/wiki b/content/wiki new file mode 160000 index 0000000..4adabf9 --- /dev/null +++ b/content/wiki @@ -0,0 +1 @@ +Subproject commit 4adabf9ab28b845adb2d6c701490b400a57be75a -- 2.47.2 From aaacc84d1aef9abbfe1ed15662652f6ff26de381 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 10 Sep 2024 09:57:41 -0400 Subject: [PATCH 2/2] forgeo-ci: pull submodules recursively --- .forgejo/workflows/pages.yaml | 1 + .forgejo/workflows/preview.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/.forgejo/workflows/pages.yaml b/.forgejo/workflows/pages.yaml index 5a05a58..a6064ec 100644 --- a/.forgejo/workflows/pages.yaml +++ b/.forgejo/workflows/pages.yaml @@ -16,6 +16,7 @@ jobs: uses: https://github.com/actions/checkout@v4 with: fetch-depth: 1 + submodules: recursive token: ${{ secrets.PAGES_TOKEN }} - name: Public repo pull uses: https://github.com/actions/checkout@v4 diff --git a/.forgejo/workflows/preview.yaml b/.forgejo/workflows/preview.yaml index 3ad603e..3787a0a 100644 --- a/.forgejo/workflows/preview.yaml +++ b/.forgejo/workflows/preview.yaml @@ -16,6 +16,7 @@ jobs: uses: actions/checkout@v4 with: fetch-depth: 1 + submodules: recursive token: ${{ secrets.PAGES_TOKEN }} - name: Public repo pull uses: actions/checkout@v4 -- 2.47.2