Skip to content

Commit

Permalink
Attempt to work-around github wildcard (or lack thereof)
Browse files Browse the repository at this point in the history
Sheesh, nobody can do it?
  • Loading branch information
tracernz committed Jan 27, 2017
1 parent 3bbccf8 commit 2583d10
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ language: cpp
dist: trusty
sudo: required

install: "./scripts/travis-install-${TRAVIS_OS_NAME}.sh"
install: ./scripts/travis-install-${TRAVIS_OS_NAME}.sh

before_script:
- qbs setup-toolchains --detect
Expand All @@ -16,14 +16,15 @@ matrix:
env: QBS_PROFILE=clang

script:
- qbs install --install-root deploy -p package release
- tree -h ./deploy
- qbs install --install-root ${TRAVIS_BUILD_DIR}/deploy -p package release
- tree -h ${TRAVIS_BUILD_DIR}/deploy

deploy:
provider: releases
api_key:
secure: OmB8N1pK1f2ASqfxPa33J+d9mZ3MjThnjRCVOVx4DLrtMyDaBXrS7VlnG1YHBk5EDZdOBDCcUD9DbuzyO5Pmj6H7reWNybb904Tic2izLBDOm7jaketwqDEhKhva3ivwas7SdJtgJW547GsFbP59EJVfCSQdxe/94i/FnF9CFk+rugp4Y+6EOR2TR5d8vHU5c3GGZWqxl/ypiS+NEc9NuQ+n3SnSm7NignfGGFYEb9JnLsqPeqzPVZ0IMBP9EHLIFtnFTdH3ou4om/pzm0EVvEdK5PtFaVwxUHC+vcpl8g2HKOI2+joWjilv3nkSIoPSOnvQoK8EzuewOfSapf/oOn+JW5HES06hT4O6cusJS2Z+DE7lzQA0Aap7fbCI8d9TfjIvknoTy8r8oWIMPA768UAhn2PqdvYqXPEJotomgTtQUtlFpNOuEdspzHxN5UEGc8ylRjcLeaPElcD04xTla87nJyk7fJyHRHbxoHpy4j3VFMaXXpRFVe+ttQRGVrlsAau9zaKJAe0KilsrsF9DAZQbngef13O91NQSkJ12mMepzhB193KYoJuQbAIggf7gm1uiUvAIwH9LBPThc2hkElck0Et12Tt23mw1rVAhI+2dBgkLB6ZLGVXwt0l5rq19ipUH7/u6n7SyEVSV+i0op8L7zBI54G0ich+8r2YjP3M=
file: deploy/logic-dshot-*.tar.xz
file_glob: true
file: ${TRAVIS_BUILD_DIR}/deploy/*.tar.xz
skip_cleanup: true
on:
repo: tracernz/logic-dshot
Expand Down
3 changes: 1 addition & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,13 @@ after_build:
- ps: tree /F deploy

artifacts:
- path: deploy/logic-dshot-*.zip
- path: 'deploy/logic-dshot-*.zip'

deploy:
provider: GitHub
description: 'Automatic build'
auth_token:
secure: KLuY5bPgxI9oDFmmhNWEwpPWN/9cXEWtBHt6J5OQzCfA27FHravJLDFdSAfsbsJw
artifact: deploy\*.zip
draft: true
prerelease: false
force_update: true
Expand Down

0 comments on commit 2583d10

Please sign in to comment.