A mirror of my website's source code.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 ManualDeploy.ps1

View raw Download
text/plain • 227 B
ASCII text
        
            
1
python build.py cb-pages
2
git switch --orphan pages
3
ls | grep -v build | rm -r -f
4
mv build/* .
5
git add .
6
git commit -m "Pages Build & Deploy"
7
git push codeberg pages
8
git push roundabout www
9
git branch -d pages
10
git checkout main
11