My immediate motivation is that I'm going to try turning on the pipelining setting, to improve performance, and I'd like to have the consistent place to put it! But also, I like standardizing our setup a bit more, too
4 lines
247 B
Bash
Executable file
4 lines
247 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Deploy a new version to production, using the Ansible playbook in `deploy/deploy.yml`.
|
|
# This skips the build step that normally runs when you just call `bin/deploy`.
|
|
cd $(dirname $0)/../deploy && ansible-playbook deploy.yml
|