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