phantasmal-world/deploy.ps1

26 lines
641 B
PowerShell
Raw Normal View History

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.
Param([Parameter(Mandatory = $true)][Int32]$release)
2019-12-26 21:40:12 +08:00
Write-Output "Running tests."
yarn test
Write-Output "Generating production build."
yarn build
2019-07-12 20:13:08 +08:00
Write-Output "Deleting ./deployment contents."
Remove-Item -Recurse ./deployment/*
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
Write-Output "Committing and pushing to gh-pages."
Set-Location ./deployment
git pull
git add .
git commit -m "Release $release."
git push
2019-12-26 21:40:12 +08:00
Set-Location ..