use GitHub Actions to release

This commit is contained in:
Pig Fang 2020-08-22 17:15:14 +08:00
parent 5d2384498c
commit 10d5b95358
No known key found for this signature in database
GPG Key ID: A8198F548DADA9E2
3 changed files with 36 additions and 38 deletions

36
.github/workflows/Release.yml vendored Normal file
View File

@ -0,0 +1,36 @@
name: Release
on:
push:
tags:
- '*.*.*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build and create archive
run: ./scripts/release.ps1
shell: pwsh
env:
AZURE_TOKEN: ${{ secrets.AZURE_TOKEN }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
- name: Upload release asset
id: upload_release_asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./blessing-skin-server-${{ github.ref }}.zipp
asset_name: blessing-skin-server-${{ github.ref }}.zip
asset_content_type: application/zip

View File

@ -1,11 +0,0 @@
trigger:
- dev
pr: none
pool:
vmImage: 'ubuntu-latest'
steps:
- pwsh: ./scripts/release.ps1
displayName: 'Release'

View File

@ -2,16 +2,6 @@ $manifest = Invoke-WebRequest 'https://dev.azure.com/blessing-skin/51010f6d-9f99
$last = $manifest.latest
$current = (Get-Content package.json | ConvertFrom-Json).version
Write-Host "Latest version: $last. Current: $current" -ForegroundColor Blue
if ($last -eq $current) {
Write-Host "Latest version is $last. No need to publish." -ForegroundColor Green -BackgroundColor DarkMagenta
exit
}
Install-Module PSGitHub -Force
Write-Host "'PSGitHub' has been installed." -ForegroundColor Green
# Install dependencies
composer install --no-dev --prefer-dist --no-suggest --no-progress
Remove-Item vendor/bin -Recurse -Force
@ -31,7 +21,6 @@ $manifest.latest = $current
$manifest.url = $manifest.url.Replace($last, $current)
$manifest.php = '7.2.5'
ConvertTo-Json $manifest | Out-File -FilePath update.json
ConvertTo-Json $manifest | Out-File -FilePath update_2.json
Write-Host "Update source is prepared." -ForegroundColor Green
$azureToken = $env:AZURE_TOKEN
@ -42,19 +31,3 @@ 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
Write-Host "Update source is pushed to Azure Repos." -ForegroundColor Green
$githubToken = $env:GITHUB_TOKEN | ConvertTo-SecureString -AsPlainText -Force
$changelogPath = "../resources/misc/changelogs/en/$current.md"
if (Test-Path $changelogPath) {
$enChangelog = Get-Content $changelogPath
$changelog = "`n---`n" + $enChangelog
} else {
$changelog = ''
}
$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.
}
Write-Host "New version $current is published!" -ForegroundColor Green -BackgroundColor DarkMagenta