Files
mattrbld/README.md

39 lines
462 B
Markdown
Raw Normal View History

2026-05-13 16:03:16 -07:00
# mattrbld test
2026-05-13 18:57:25 +02:00
2026-05-13 16:03:16 -07:00
## 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
2026-05-13 17:00:18 -07:00
to add the submodule:
```sh
git submodule add <remote-url>
```
2026-05-13 16:03:16 -07:00
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
```