2019-07-12 20:13:08 +08:00
|
|
|
# Script for deploying to gh-pages.
|
|
|
|
# Requires a git ./deployment directory which tracks a gh-pages branch.
|
|
|
|
|
2019-12-26 21:40:12 +08:00
|
|
|
Write-Output "Running tests."
|
|
|
|
yarn test
|
2020-01-06 06:20:53 +08:00
|
|
|
if ($LastExitCode -ne 0) { throw "Tests failed." }
|
2019-12-26 21:40:12 +08:00
|
|
|
|
|
|
|
Write-Output "Generating production build."
|
|
|
|
yarn build
|
2020-01-06 06:20:53 +08:00
|
|
|
if ($LastExitCode -ne 0) { throw "Build failed." }
|
2019-12-26 21:40:12 +08:00
|
|
|
|
2019-07-12 20:13:08 +08:00
|
|
|
Write-Output "Deleting ./deployment contents."
|
|
|
|
Remove-Item -Recurse ./deployment/*
|
|
|
|
|
2019-07-27 07:49:19 +08:00
|
|
|
Write-Output "Copying dist to ./deployment."
|
|
|
|
Copy-Item -Recurse ./dist/* ./deployment
|
2019-07-12 20:13:08 +08:00
|
|
|
Write-Output "www.phantasmal.world" > deployment/CNAME
|
|
|
|
|
2020-01-01 04:18:26 +08:00
|
|
|
Write-Output "Bumping version."
|
|
|
|
$version = Get-Content -Path version.txt
|
|
|
|
$version = $version / 1 + 1
|
|
|
|
Write-Output $version > version.txt
|
|
|
|
|
2019-07-12 20:13:08 +08:00
|
|
|
Write-Output "Committing and pushing to gh-pages."
|
|
|
|
Set-Location ./deployment
|
|
|
|
git pull
|
2020-01-06 06:20:53 +08:00
|
|
|
if ($LastExitCode -ne 0) { throw "Git pull failed." }
|
2019-07-12 20:13:08 +08:00
|
|
|
git add .
|
2020-01-06 06:20:53 +08:00
|
|
|
if ($LastExitCode -ne 0) { throw "Git add failed." }
|
2020-01-01 04:18:26 +08:00
|
|
|
git commit -m "Release $version."
|
2020-01-06 06:20:53 +08:00
|
|
|
if ($LastExitCode -ne 0) { throw "Git commit failed." }
|
2019-07-12 20:13:08 +08:00
|
|
|
git push
|
2020-01-06 06:20:53 +08:00
|
|
|
if ($LastExitCode -ne 0) { throw "Git push failed." }
|
2019-12-26 21:40:12 +08:00
|
|
|
|
|
|
|
Set-Location ..
|
2020-01-01 04:28:48 +08:00
|
|
|
|
|
|
|
Write-Output ""
|
|
|
|
Write-Output "Deployed release $version successfully."
|
|
|
|
Write-Output ""
|