bitwarden-estensione-browser/azure-pipelines.yml

47 lines
1.1 KiB
YAML
Raw Normal View History

# Node.js
# Build a general Node.js project with npm.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
trigger:
- none
pool:
vmImage: 'windows-latest'
2020-12-14 20:25:24 +01:00
variables:
- group: qa-envs
steps:
- task: NodeTool@0
inputs:
versionSpec: '10.x'
displayName: 'Install Node.js'
2020-12-14 20:25:24 +01:00
- script: git checkout $(GIT_COMMIT_TO_BUILD)
displayName: setup commit to build
- script: npm install
displayName: 'npm install'
- script: |
npm run build
npm npm run clean:dist
displayName: 'npm build'
2020-12-14 18:41:26 +01:00
- script: npx electron-builder --win --x64 --ia32 -p never
displayName: 'electron-builder package'
2020-12-14 19:47:21 +01:00
- script: ls -alht dist
displayName: show executables
2020-12-14 20:56:29 +01:00
- task: PublishPipelineArtifact@1
2020-12-14 20:04:39 +01:00
inputs:
pathToPublish: '$(System.DefaultWorkingDirectory)/dist/Bitwarden-1.23.1-ia32.appx'
2020-12-14 20:25:24 +01:00
artifactName: Bitwarden-$(GIT_COMMIT_TO_BUILD)-ia32.appx
2020-12-14 19:47:21 +01:00
2020-12-14 20:56:29 +01:00
- task: PublishPipelineArtifact@1
2020-12-14 20:04:39 +01:00
inputs:
pathToPublish: '$(System.DefaultWorkingDirectory)/dist/Bitwarden-1.23.1-x64.appx'
2020-12-14 20:25:24 +01:00
artifactName: Bitwarden-$(GIT_COMMIT_TO_BUILD)-x64.appx