Skip to content
Snippets Groups Projects
Commit 399a11f4 authored by Gabriel Engel's avatar Gabriel Engel
Browse files

removing sh

parent 53b88e36
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,8 @@ script:
- meteor build /tmp/build
before_deploy:
- mkdir /tmp/deploy
- sh $TRAVIS_BUILD_DIR/.travis/namefiles.sh
- sh $TRAVIS_BUILD_DIR/.travis/sandstorm.sh
- .travis/namefiles.sh
- .travis/sandstorm.sh
deploy:
- provider: s3
access_key_id: "AKIAIKIA7H7D47KUHYCA"
......@@ -39,4 +39,4 @@ deploy:
branch: master
tags: true
after_deploy:
- sh $TRAVIS_BUILD_DIR/.travis/docker.sh
- .travis/docker.sh
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
# TRAVIS_TAG='v0.7'
# TAG="v0.7"
......
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
cd $TRAVIS_BUILD_DIR
export TAG=$(git describe --abbrev=0 --tags)
ln -s /tmp/build/Rocket.Chat.tar.gz "/tmp/deploy/$TAG.$TRAVIS_BUILD_NUMBER.$TRAVIS_BRANCH.tgz"
......
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
export SANDSTORM_VERSION=$(curl -f "https://install.sandstorm.io/dev?from=0&type=install")
export PATH=$PATH:/tmp/sandstorm-$SANDSTORM_VERSION/bin
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment