Francesco Siddi
0515845e27
- Add automatic rebase for production deployment - Use bash instead of sh
21 lines
356 B
Bash
Executable File
21 lines
356 B
Bash
Executable File
#!/bin/bash -ex
|
|
|
|
ENVIRONMENT=$1
|
|
|
|
if [ -z "$ENVIRONMENT" ]
|
|
then
|
|
echo "Usage: ./deploy.sh staging|production"
|
|
exit 1
|
|
fi
|
|
|
|
if [ "$ENVIRONMENT" = "production" ]
|
|
then
|
|
git fetch origin main:production && git push origin production
|
|
fi
|
|
|
|
pushd playbooks
|
|
source .venv/bin/activate
|
|
./ansible.sh -i environments/$ENVIRONMENT deploy.yaml
|
|
deactivate
|
|
popd
|