Arquivos
VoTT/azure-pipelines/linux/artifact-build-linux.yml
T
P.J. Little ab3ce6f108 feat: exclude desktop functionality from browser target (#713)
Remove electron functionality from browser builds. Some updates to
CI scripts, based on things found in the last release.
2019-04-12 15:08:10 -07:00

27 linhas
617 B
YAML

# Node.js with React
# Build a Node.js project that uses React.
# Add steps that analyze code, save build artifacts, deploy, and more:
# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript
steps:
- task: NodeTool@0
displayName: 'Use Node 10.x'
inputs:
versionSpec: 10.x
- bash: |
set -ex
# clean install
npm ci
npm run release-ci
mkdir -p linux
cp releases/vott*.snap linux/
displayName: Build
- task: PublishBuildArtifacts@1
displayName: 'Publish Artifact: linux'
inputs:
PathtoPublish: linux
ArtifactName: linux