From fb70be6fd1564560f335b373915c04943cfe0037 Mon Sep 17 00:00:00 2001 From: Lee Cattarin Date: Wed, 13 May 2026 16:03:16 -0700 Subject: [PATCH] add notes --- README.md | 33 +++++++++++++++++++++++++++++++-- 1 file changed, 31 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7c20d93..00e4a55 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,32 @@ -# 11ty Template +# mattrbld test -Template repository for my 11ty projects. +## local drone testing + +create secrets.txt: + +```txt +GIT_TOKEN=PAT +``` + +run `drone exec` with secrets file: + +```sh +drone exec --secret-file=secrets.txt +``` + +## submodule bullshit + +to pull in remote updates: + +```sh +git submodule update --remote +``` + +to push incl. submodule updates: + +```sh +cd mattrbld-site +git commit -am "message" +cd .. +git push --recurse-submodules=on-demand +```