espanso/ci/build-win.yml

19 lines
522 B
YAML
Raw Normal View History

steps:
- task: UsePythonVersion@0
inputs:
versionSpec: '3.7'
addToPath: true
- script: |
2019-09-21 11:23:45 +00:00
python --version
python -m pip install toml click
displayName: Installing python dependencies
- script: |
python packager.py build
2019-09-21 11:46:00 +00:00
copy "target\\packager\\win\\espanso-win-installer.exe" "espanso-win-installer.exe"
copy "target\\packager\\win\\espanso-win-installer-sha256.txt" "espanso-win-installer-sha256.txt"
dir
2019-09-21 11:23:45 +00:00
displayName: "Build and packaging for Windows"