ab3ce6f108
Remove electron functionality from browser builds. Some updates to CI scripts, based on things found in the last release.
23 linhas
398 B
YAML
23 linhas
398 B
YAML
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 mac
|
|
cp releases/vott*.dmg mac/
|
|
displayName: Build
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: 'Publish Artifact: mac'
|
|
inputs:
|
|
PathtoPublish: mac
|
|
ArtifactName: mac
|