5 lines
248 B
Text
5 lines
248 B
Text
|
#!/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`.
|
||
|
ansible-playbook -i deploy/inventory.cfg deploy/deploy.yml
|