ManualDeploy.ps1
ASCII text
1python build.py cb-pages 2$pagesbranchexists = (git branch --list pages) -Eq $null 3if ($pagesbranchexists) { 4git branch -D pages 5} 6git switch --orphan pages 7ls | grep -v build | rm -r -fo 8mv build/* . 9git add . 10git commit -m "Pages Build & Deploy" 11git push codeberg pages -f 12git push roundabout pages -f 13