https://github.com/pindlebot/travis-up
https://github.com/pindlebot/travis-up
Last synced: 5 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/pindlebot/travis-up
- Owner: pindlebot
- Created: 2018-06-08T09:43:54.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-11T05:11:17.000Z (about 8 years ago)
- Last Synced: 2026-04-06T09:27:14.988Z (2 months ago)
- Language: Shell
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## travis-up
Install [Apex up](https://github.com/apex/up) on travis.
Don't forget to set AWS environmental variables!
```bash
travis env set AWS_ACCESS_KEY_ID your_access_key_id
travis env set AWS_SECRET_ACCESS_KEY your_secret_access_key
```
```yml
...
language: node_js
node_js:
- 10
branches:
only:
- master
install:
- yarn --ignore-engines
script:
- yarn add travis-up # installs up via postinstall script
deploy:
provider: script
script: ./bin/up depoy production
skip_cleanup: true
after_success:
- ./bin/up url
env:
global:
AWS_REGION: us-west-1
```