2023-08-19 18:51:46 -07:00
|
|
|
#!/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`.
|
2024-09-06 12:16:26 -07:00
|
|
|
cd $(dirname $0)/../deploy && ansible-playbook deploy.yml
|