From 0027e9cb742be735018b155fcde2e96621726640 Mon Sep 17 00:00:00 2001 From: q-posev Date: Fri, 24 Sep 2021 12:09:40 +0200 Subject: [PATCH] try alternative submodules feature for GitHub CI --- .github/workflows/gh-pages.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/gh-pages.yml b/.github/workflows/gh-pages.yml index 522fde8..8cda186 100644 --- a/.github/workflows/gh-pages.yml +++ b/.github/workflows/gh-pages.yml @@ -10,6 +10,8 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + with: + submodules: true - name: install extra repository run: sudo add-apt-repository ppa:kelleyk/emacs @@ -21,8 +23,8 @@ jobs: run: sudo apt-get install emacs26 # this step is needed to pull the git submodule org-html-themes - - name: initialize submodules - run: git submodule update --init + #- name: initialize submodules + # run: git submodule update --init - name: make run: cd tools/ && ./build_doc.sh && cd ..