Skip to content

Commit

Permalink
Merge branch 'release/v1.4.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
appsol committed Jul 24, 2021
2 parents 3f74a4f + 8a47581 commit fc4d917
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ script:
- echo "No tests ran"

before_deploy:
- curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "/tmp/awscli-bundle.zip"
- unzip /tmp/awscli-bundle.zip -d /tmp
- /tmp/awscli-bundle/install -b $HOME/bin/aws
- export PATH=$PATH:$HOME/bin
- curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
- unzip awscliv2.zip
- sudo ./aws/install
- export PATH=$PATH:/usr/local/bin
- echo aws --version

deploy:
# Tagged releases
Expand Down
2 changes: 1 addition & 1 deletion .travis/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ echo "Downloading .env file..."
rm -f .env
aws secretsmanager get-secret-value \
--secret-id ${ENV_SECRET_ID} | \
python -c "import json,sys;obj=json.load(sys.stdin);print obj['SecretString'];" > .env
python -c "import json,sys;obj=json.load(sys.stdin);print(obj['SecretString']);" > .env

# Build.
echo "Building..."
Expand Down

0 comments on commit fc4d917

Please sign in to comment.