document process

This commit is contained in:
Jean-Marie Mineau 2024-03-11 13:27:38 +01:00
parent 6bd6faa956
commit a1aa259c1a
Signed by: histausse
GPG key ID: B66AEEDA9B645AD2

16
README.md Normal file
View file

@ -0,0 +1,16 @@
# Gen pages:
```
git clone <repo>
trunk build --release --public-url '.'
cd dist
git init
git remote add origin <repo>
# remove old pages branch
git push origin -d pages
git checkout -b pages
git add *
git commit -m "gen pages"
# push new pages branch
git push -u origin pages
```