Skip to content

Commit 50b8986

Browse files
committed
Merge pull request #133 from JLLeitschuh/fix/ciRelease
Fixes Automated CI Releases Not working
2 parents 4f4c808 + 386a6e0 commit 50b8986

File tree

2 files changed

+16
-8
lines changed

2 files changed

+16
-8
lines changed

.travis.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,16 @@ env:
4848
os:
4949
- linux
5050

51+
before_deploy:
52+
- export $RELEASE_PKG_FILE=$(ls -1 build/distributions/*.deb)
53+
- echo "Deploying $RELEASE_PKG_FILE to GitHub releases"
54+
5155
deploy:
5256
provider: releases
5357
api_key:
5458
secure: bdjiFXG3VBcM1iyxeputsWA9vHxgLNcxRB1i0REDNAnIEvDWpAdVr1jPBejeiOEw9s+k6EItATvQ2I7Xp5iKnYaXn0NuHzM3OSY8WNVCc+gBTaQwkijPBqi/vEXaO502CscW+H2U26QZGS/jJiUuieeErtzCNcWmCv8SRc5NFOVYdSlhAmp+aPeu2YwuweiMZNVquYM2hx7murghOYSF5hQTKq4/zrziENVi78XZS8rJFmxwOGqNj1GBLul2F9poIPjzDbPVJLeXTJEY+N3aYGJ4GyZYf6p8ynDO/v043/GuOAyNfkgSwhCcTQlmLG/mm6P9CUMoDQR9klh2eDswgrIP4rGLwILg3035nqHqwgTIKVXfspni3P/65siS6lXV0M5flEkRysMBr1GQhaIEUM32ArreMzAtC2Vn2CviKG0TwLmxyd/7W3JdoX4KrHAcKBwbqFDImWw43S6N63oTUEw6GjrI+CndwgF9RNgr5SAyS28LFXViOJe7JlGVUNU33kMNpEJxzVREzkJsO8aicaZTrvDniFOfg2WhrAyhjxmh4/IOHDE6qgtxw+2+TUzMlwdzdxb90BeXg2XfMichmKfQYQFEmZntCZcoHHDG5jbCTyAvFuOv6tdPjpr69QjiEJhEbohw8CEwoGhy1kxxQcCDCfABrOTivJ39Ui8MC6k=
55-
file: build/distributions/*.deb
59+
file_glob: true
60+
file: "${RELEASE_PKG_FILE}"
5661
skip_cleanup: true
5762
on:
5863
repo: WPIRoboticsProjects/GRIP

appveyor.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,13 @@ artifacts:
1111
- path: build\distributions\*.exe
1212

1313
deploy:
14-
- provider: GitHub
15-
artifact: /.*\.exe/ # upload all exe packages to release assets
16-
draft: true
17-
prerelease: true
18-
on:
19-
branch: master # release from master branch only
20-
appveyor_repo_tag: true # deploy on tag push only
14+
provider: GitHub
15+
description: ''
16+
auth_token:
17+
secure: k0uhlsYxGoZkHVNNm4E+WnOiBfzsv4yLS+htlplR7JwzARqiAC2RU0cVnsIg1UF0
18+
artifact: /.*\.exe/ # upload all exe packages to release assets
19+
draft: true
20+
prerelease: true
21+
on:
22+
branch: master # release from master branch only
23+
appveyor_repo_tag: true # deploy on tag push only

0 commit comments

Comments
 (0)