commit e8b1dbf680facdfc55ef8500981cdfc3215d56b5
parent 32e39c00f887ee84e14ae6c2eae30143c0019230
Author: Luís Ferreira <contact@lsferreira.net>
Date: Thu, 14 Oct 2021 16:37:52 +0100
treewide: fix git submodules checkout for github action
Signed-off-by: Luís Ferreira <contact@lsferreira.net>
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
@@ -15,6 +15,9 @@ jobs:
container: klakegg/hugo:0.83.1-ext-alpine-onbuild
steps:
- uses: actions/checkout@v2
+ with:
+ token: ${{ secrets.MY_GITHUB_PAT }}
+ submodules: recursive
- name: Install dependencies
run: |
apk add rsync
diff --git a/Makefile b/Makefile
@@ -6,7 +6,6 @@ clean:
rm -rf public/
build-static:
- git submodule update --init --recursive
./static/generate.sh
gen-lastupdate: