1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-12 01:48:21 +02:00

stub prod_deploy after build

This commit is contained in:
Kyle Spearrin 2019-03-12 15:32:16 -04:00
parent 3193682bee
commit 68077326b0

View File

@ -17,8 +17,12 @@ init:
}
install:
- ps: $env:package_version = (Get-Content -Raw -Path .\src\package.json | ConvertFrom-Json).version
- ps: |
$env:package_version = (Get-Content -Raw -Path .\src\package.json | ConvertFrom-Json).version
$env:prod_deploy=$false
if($env:APPVEYOR_REPO_TAG_NAME -and $env:APPVEYOR_RE_BUILD) {
$env:prod_deploy=$true
}
if($isWindows) {
choco install cloc --no-progress
cloc --include-lang TypeScript,JavaScript,HTML,Sass,CSS --vcs git
@ -47,6 +51,15 @@ build_script:
Push-AppveyorArtifact .\dist\Bitwarden-$env:package_version-ia32.appx
}
after_build:
- ps: |
if($isLinux && $env:prod_deploy) {
echo "Deploy Linux..."
}
else if($env:prod_deploy) {
echo "Deploy Windows..."
}
for:
-
matrix: