ab3ce6f108
Remove electron functionality from browser builds. Some updates to CI scripts, based on things found in the last release.
27 linhas
617 B
YAML
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
|