mirror of
https://github.com/xodio/xod.git
synced 2026-03-06 00:44:04 +01:00
34 lines
1.2 KiB
PowerShell
34 lines
1.2 KiB
PowerShell
|
|
function Upload-Dist-To-GCS($tag) {
|
|
$config = New-TemporaryFile
|
|
echo $env:GOOGLE_CLOUD_STORAGE_CONFIG | node -e "console.log(new Buffer ('$env:GOOGLE_CLOUD_STORAGE_CONFIG', 'base64').toString('utf8').trim())" > $config
|
|
(Get-Content -Path $config) | %{ $_.Replace("\xEF\xBB\xBF", "") } | Set-Content -Path $config
|
|
foreach ($file in (Get-ChildItem -Path packages/xod-client-electron/dist -File)) {
|
|
node tools/electron-upload.js --config=$($config.FullName) --file=$($file.FullName) --tag=$tag
|
|
}
|
|
}
|
|
|
|
function Build-Dist() {
|
|
# Build again with production settings for the UI part of the IDE
|
|
$env:NODE_ENV="production"
|
|
yarn run build:electron
|
|
yarn run dist:electron
|
|
}
|
|
|
|
$tags=(git tag --points-at $env:APPVEYOR_REPO_COMMIT)
|
|
|
|
if ($tags) {
|
|
Build-Dist
|
|
foreach ($tag in $tags) {
|
|
Upload-Dist-To-GCS $tag
|
|
}
|
|
}
|
|
|
|
if ($env:APPVEYOR_REPO_BRANCH -match '^prerelease-(patch|minor)-') {
|
|
Write-Host 'Building prerelease distributive...' -ForegroundColor Yellow
|
|
yarn lerna publish --skip-git --skip-npm --canary --cd-version $Matches[1] --yes
|
|
$tag=(node -e "console.log('v' + require('./packages/xod-client-electron/package.json').version)")
|
|
Build-Dist
|
|
Upload-Dist-To-GCS $tag
|
|
}
|