From 4eac3f16046b8096881c48b6988f5566ee52dc72 Mon Sep 17 00:00:00 2001 From: Ben Gotow Date: Fri, 11 Aug 2017 09:20:46 -0700 Subject: [PATCH] Run with all the variations - still not finding linux build artifacts --- .appveyor.yml | 6 +++--- .travis.yml | 11 +++++++++-- 2 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 33d8adec2..29049adaf 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -26,9 +26,9 @@ build_script: - cmd: node app/build/create-signed-windows-installer.js artifacts: -- path: dist/merani-win32-ia32/MeraniSetup.exe -- path: dist/merani-win32-ia32/RELEASES -- path: dist/merani-win32-ia32/*.nupkg +- path: dist/MeraniSetup.exe +- path: dist/RELEASES +- path: dist/*.nupkg deploy: - provider: S3 diff --git a/.travis.yml b/.travis.yml index ad3e92d3b..0ba87a7eb 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,11 +9,18 @@ addons: artifacts: working_dir: app/dist target_paths: client/${TRAVIS_COMMIT:0:8}/${TRAVIS_OS_NAME} + permissions: public-read paths: - Merani.dmg - Merani.zip - - $(ls . | grep .deb | tr "\n" ":") - - $(ls ./rpm | grep .rpm | tr "\n" ":") + - $(find . -type f -name *.deb | tr "\n" ":") + - $(find . -type f -name *.rpm | tr "\n" ":") + - (find . -type f -name *.deb | tr "\n" ":") + - (find . -type f -name *.rpm | tr "\n" ":") + - $(cd ./app/dist && find . -type f -name *.deb | tr "\n" ":") + - $(cd ./app/dist && find . -type f -name *.rpm | tr "\n" ":") + - (cd ./app/dist && find . -type f -name *.deb | tr "\n" ":") + - (cd ./app/dist && find . -type f -name *.rpm | tr "\n" ":") apt: sources: - ubuntu-toolchain-r-test