From 7d18402bec798a9ad06ccfa4149fd617546d5834 Mon Sep 17 00:00:00 2001 From: LePichu Date: Fri, 16 Feb 2024 15:25:44 +0530 Subject: [PATCH] feat: deployer script --- deploy.ps1 | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 deploy.ps1 diff --git a/deploy.ps1 b/deploy.ps1 new file mode 100644 index 0000000..f9b02c6 --- /dev/null +++ b/deploy.ps1 @@ -0,0 +1,11 @@ +pnpm build --preset=deno_deploy + +Set-Location ".\_site" + +git init +git add . +git commit -m "Deploy: $(Get-Date)" +git remote add master "https://github.com/LePichu/tk24-beacon-deploy" +git push master master --force + +Set-Location "../" \ No newline at end of file