Skip to content

Commit

Permalink
Merge pull request #133 from JLLeitschuh/fix/ciRelease
Browse files Browse the repository at this point in the history
Fixes Automated CI Releases Not working
  • Loading branch information
JLLeitschuh committed Nov 13, 2015
2 parents 4f4c808 + 386a6e0 commit 50b8986
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,16 @@ env:
os:
- linux

before_deploy:
- export $RELEASE_PKG_FILE=$(ls -1 build/distributions/*.deb)
- echo "Deploying $RELEASE_PKG_FILE to GitHub releases"

deploy:
provider: releases
api_key:
secure: bdjiFXG3VBcM1iyxeputsWA9vHxgLNcxRB1i0REDNAnIEvDWpAdVr1jPBejeiOEw9s+k6EItATvQ2I7Xp5iKnYaXn0NuHzM3OSY8WNVCc+gBTaQwkijPBqi/vEXaO502CscW+H2U26QZGS/jJiUuieeErtzCNcWmCv8SRc5NFOVYdSlhAmp+aPeu2YwuweiMZNVquYM2hx7murghOYSF5hQTKq4/zrziENVi78XZS8rJFmxwOGqNj1GBLul2F9poIPjzDbPVJLeXTJEY+N3aYGJ4GyZYf6p8ynDO/v043/GuOAyNfkgSwhCcTQlmLG/mm6P9CUMoDQR9klh2eDswgrIP4rGLwILg3035nqHqwgTIKVXfspni3P/65siS6lXV0M5flEkRysMBr1GQhaIEUM32ArreMzAtC2Vn2CviKG0TwLmxyd/7W3JdoX4KrHAcKBwbqFDImWw43S6N63oTUEw6GjrI+CndwgF9RNgr5SAyS28LFXViOJe7JlGVUNU33kMNpEJxzVREzkJsO8aicaZTrvDniFOfg2WhrAyhjxmh4/IOHDE6qgtxw+2+TUzMlwdzdxb90BeXg2XfMichmKfQYQFEmZntCZcoHHDG5jbCTyAvFuOv6tdPjpr69QjiEJhEbohw8CEwoGhy1kxxQcCDCfABrOTivJ39Ui8MC6k=
file: build/distributions/*.deb
file_glob: true
file: "${RELEASE_PKG_FILE}"
skip_cleanup: true
on:
repo: WPIRoboticsProjects/GRIP
Expand Down
17 changes: 10 additions & 7 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@ artifacts:
- path: build\distributions\*.exe

deploy:
- provider: GitHub
artifact: /.*\.exe/ # upload all exe packages to release assets
draft: true
prerelease: true
on:
branch: master # release from master branch only
appveyor_repo_tag: true # deploy on tag push only
provider: GitHub
description: ''
auth_token:
secure: k0uhlsYxGoZkHVNNm4E+WnOiBfzsv4yLS+htlplR7JwzARqiAC2RU0cVnsIg1UF0
artifact: /.*\.exe/ # upload all exe packages to release assets
draft: true
prerelease: true
on:
branch: master # release from master branch only
appveyor_repo_tag: true # deploy on tag push only

0 comments on commit 50b8986

Please sign in to comment.