Upload release artifacts for Windows (#197)

This commit is contained in:
Pär Winzell 2019-05-16 12:39:39 -07:00 committed by GitHub
commit 449c5ed59d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 9 deletions

View File

@ -1,13 +1,6 @@
# version format # version format
version: 1.0.{build} version: 1.0.{build}
branches:
only:
- master
- feat/appveyor-build
skip_tags: true
environment: environment:
matrix: matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 - APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
@ -16,6 +9,9 @@ environment:
stack: python %PYTHON% stack: python %PYTHON%
cache:
- C:\Users\appveyor\.conan\data -> appveyor.yml
install: install:
- cmd: echo "Downloading conan..." - cmd: echo "Downloading conan..."
- cmd: set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH% - cmd: set PATH=%PYTHON%;%PYTHON%\Scripts;%PATH%
@ -31,8 +27,20 @@ build_script:
- cmd: conan build -bf build . - cmd: conan build -bf build .
- cmd: move build\Release\FBX2glTF.exe build\Release\FBX2glTF-windows-x64.exe - cmd: move build\Release\FBX2glTF.exe build\Release\FBX2glTF-windows-x64.exe
test: off
artifacts: artifacts:
- path: build/Release/FBX2glTF-windows-x64.exe - path: build/Release/FBX2glTF-windows-x64.exe
test: off deploy:
deploy: off tag: $(APPVEYOR_REPO_TAG_NAME)
description: ''
provider: GitHub
auth_token:
secure: OSvhQP0O9uaH+OFOJpbGiiBMRTOJ+H/VJHqVBhq39RNDnOfUEr/yjJNKh3JSdNqj
artifact: build/Release/FBX2glTF-windows-x64.exe
draft: true
prerelease: true
on:
branch: master
APPVEYOR_REPO_TAG: true