mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-03-01 10:33:14 +08:00
Run with all the variations - still not finding linux build artifacts
This commit is contained in:
parent
7039e39b1f
commit
4eac3f1604
2 changed files with 12 additions and 5 deletions
|
@ -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
|
||||
|
|
11
.travis.yml
11
.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
|
||||
|
|
Loading…
Reference in a new issue