blessing-skin-server/scripts/release.ps1

52 lines
2.3 KiB
PowerShell
Raw Normal View History

2019-08-01 11:44:59 +08:00
$manifest = Invoke-WebRequest 'https://dev.azure.com/blessing-skin/51010f6d-9f99-40f1-a262-0a67f788df32/_apis/git/repositories/a9ff8df7-6dc3-4ff8-bb22-4871d3a43936/Items?path=%2Fupdate_2.json' | ConvertFrom-Json
$last = $manifest.latest
$current = (Get-Content package.json | ConvertFrom-Json).version
if ($last -eq $current) {
2019-08-01 14:40:27 +08:00
Write-Output "Latest version is $last. No need to publish." -ForegroundColor Green -BackgroundColor DarkMagenta
2019-08-01 11:44:59 +08:00
exit
}
Install-Module PSGitHub -Force
2019-08-01 14:40:27 +08:00
Write-Output "'PSGitHub' has been installed." -ForegroundColor Green
2019-08-01 11:44:59 +08:00
# Install dependencies
composer install --no-dev
Remove-Item vendor/bin -Recurse -Force
yarn
yarn build
2019-08-01 14:40:27 +08:00
Write-Output "Dependencies have been installed." -ForegroundColor Green
2019-08-01 11:44:59 +08:00
$zip = "blessing-skin-server-$current.zip"
zip -9 -r $zip app bootstrap config database plugins public resources/lang resources/views resources/misc routes storage vendor .env.example artisan LICENSE README.md README_EN.md
2019-08-01 14:40:27 +08:00
Write-Output "Zip archive is created." -ForegroundColor Green
2019-08-01 11:44:59 +08:00
New-Item dist -ItemType Directory
Set-Location dist
Copy-Item -Path "../$zip" -Destination $zip
$manifest.latest = $current
$manifest.url = $manifest.url.Replace($last, $current)
ConvertTo-Json $manifest | Out-File -FilePath update_2.json
2019-08-01 14:40:27 +08:00
Write-Output "Update source is prepared." -ForegroundColor Green
2019-08-01 11:44:59 +08:00
$azureToken = $env:AZURE_TOKEN
git config --global user.email 'g-plane@hotmail.com'
git config --global user.name 'Pig Fang'
git init
git add .
git commit -m "Publish"
git push -f "https://anything:$azureToken@dev.azure.com/blessing-skin/Blessing%20Skin%20Server/_git/Blessing%20Skin%20Server" master
2019-08-01 14:40:27 +08:00
Write-Output "Update source is pushed to Azure Repos." -ForegroundColor Green
2019-08-01 11:44:59 +08:00
$githubToken = $env:GITHUB_TOKEN | ConvertTo-SecureString -AsPlainText -Force
$enChangelog = Get-Content "../resources/misc/changelogs/en/$current.md"
$changelog = "`n---`n" + $enChangelog
2019-08-01 14:38:26 +08:00
$release = New-GitHubRelease -Token $githubToken -Owner 'bs-community' -Repository 'blessing-skin-server' -TagName $current -ReleaseNote $changelog
try {
New-GitHubReleaseAsset -Token $githubToken -Owner 'bs-community' -Repository 'blessing-skin-server' -ReleaseId $release.Id -Path $zip
} catch {
# Do nothing.
}
2019-08-01 14:40:27 +08:00
Write-Output "New version $current is published!" -ForegroundColor Green -BackgroundColor DarkMagenta