ci: Add GitHub releases to CI (#95)

This commit is contained in:
Matan Kushner
2019-07-14 17:54:45 -04:00
committed by GitHub
parent 77ba97df19
commit 0703a74048
17 changed files with 367 additions and 83 deletions
+16
View File
@@ -0,0 +1,16 @@
steps:
# Install Node.js
- task: NodeTool@0
inputs:
versionSpec: "12.0.0"
displayName: "Install a fixed version of Node"
# Install Go
- task: GoTool@0
inputs:
versionSpec: "1.10"
displayName: "Install a fixed version of Go"
# Install Python
- task: UsePythonVersion@0
inputs:
versionSpec: "3.6.8"
displayName: "Install a fixed version of Python"